/* 
= JS Document  ============================
	
	Site: 			Wessynton
	Author: 		Jon Park | Union Room
	Created: 		4th August, 2008
	Updated: 		
	Copyright: 	(c) 2008, Wessynton. All Rights Reserved.
	
=======================================
*/

$(function() {
	$("a[@rel='external']").addClass("external").attr('title', function() { return this.title + ' (Opens in New Window)' }).click(function() { window.open(this.href); return false; });
	$("a[href='#skiptotop']").click(function() { $.scrollTo(0, 500); return false; });
		
	$.sifr({
		path : 'flash/', 
		textAlign : 'left', 
		flashOptions: { expressInstall: true, update: true, version: '7' } 
	});

	$('a.btnReplace').show();
	$('input.btnReplace').hide();
	
	$('#sidebar option:odd').addClass('alt');
	
	$('#quickSearch a.btnReplace').click(function() { $('#quickSearch').submit(); return false; });
	$('#jobSearch a.btnReplace').click(function() { $('#jobSearch').submit(); return false; });
	
	$('#quickSearch input.text')
		.focus(function() { 
			if ($(this).val() == '-- Enter Keyword --') { $(this).val(''); }
		})
		.blur(function() { 
			if ($(this).val() == '') { $(this).val('-- Enter Keyword --'); }
		});
	
});

