jQuery(function($) {

	// jump menus
	$('.sdg_jump_menu').change(function() {
		var location = $(this).val();
		if(location != '-1') {
			window.location.href = location;
		}
	});

	// search boxes
	$('.searchbox').focus(function() {
		var element = $(this);
		var value = element.val();
		if(value == 'Enter Search Terms and Press Return') {
			element.val('');
		}
	}).blur(function() {
		var element = $(this);
		var value = element.val();
		if(value == '') {
			element.val('Enter Search Terms and Press Return');
		}
	}).keypress(function(event) {
		var input = $(this);
		var terms = input.val();
		if (event.which == '13') {
			event.preventDefault();
			if (terms != '' && terms != 'Enter Search Terms and Press Return') {
				input.closest('form').submit();
			}
		}
	});

	$(window).load(function() {
		if($('.nivoSlider').length) {
			$('.nivoSlider').nivoSlider({
				pauseTime: '6000'
			});
		}
		if($('a[rel^="prettyPhoto"]').length) {
			$('a[rel^="prettyPhoto"]').prettyPhoto({
				social_tools: false
			});		
		}
	});
	
});


