/**********************************************************************************************

  CSS on Sails Framework
  Title: Site Name
  Author: XHTMLized (http://www.xhtmlized.com/)
  Date: March 2010

***********************************************************************************************/

$(document).ready(function() {

	$('.slideshow').cycle({
		fx: 'fade'
	});

	//
	$('a[rel=_blank]').click(function(){
		this.target = "_blank";
	});

	//
	$('#footer form fieldset input[type="text"]').focus(function() {
		if ($(this).val() == 'search') {
			$(this).val('');
		}
		else {
		}
	});
	$('#footer form fieldset input[type="text"]').blur(function() {
		if ($(this).val() == '') {
			$(this).val('search')
		}
		else {
		}
	});

	//
	if (($.browser.msie) && ($.browser.version == "8.0")){

		//
		$('html').addClass('ie8');

	}

	//
	if (($.browser.msie) && ($.browser.version == "7.0")){

		//
		$('html').addClass('ie7');

		//
		$('input[type="text"]').focus(function() {
			$(this).addClass('focus');
		});
		$('input[type="text"]').blur(function() {
			$(this).removeClass('focus');
		});

	}

  $('#navigation li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none');  }
		);

});

