$(function() 
{
	
	
	Cufon.replace('.font', {hover: true});



	$('input#s').focus(function()
	{
	
		var thevalue = $(this).val();
	
		if(thevalue == 'Search...')
		{
			$(this).val('');
		}
	
	});
	
	$('input#s').blur(function()
	{
	
		var thevalue = $(this).val();
	
		if(thevalue == '')
		{
			$(this).val('Search...');
		}
	
	});
	
	
	$('.slideshow').cycle({
	//fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, scrollRight etc...
	fx:     'fade', 
	speed:   300,
	prev:   '#prev1', 
	next:   '#next1',
	speedIn: 800,
	speedOut: 800,
	pause:    1
	});



	jQuery("ul li").mouseover(function () 
	{
		jQuery(this).addClass("hover");
	});
	
	jQuery("ul li").mouseleave(function () 
	{
		jQuery(this).removeClass("hover");
	});


	
	$('.rmv-dft-val').click(
	function() {
	if (this.value == this.defaultValue) {
	this.value = '';
	}
	}
	);
	$('.rmv-dft-val').blur(
	function() {
	if (this.value == '') {
	this.value = this.defaultValue;
	}
	});

	
	
});
