jQuery(function($) {
	$('#s').click(function() {
		if (this.value == this.defaultValue) {
		this.value = '';
		}
	});
	$('#s').blur(function() {
		if (this.value == '') {
		this.value = this.defaultValue;
		}
	});
	$('.latestdeals_table tbody tr:odd').css('background-color','#e3f0f6');
	
	// ONLY CALL SLIDESHOW WHEN ON THE HOME PAGE
	if ($('#mainbanner > div.img_height').html() != '') {		
		$('#mainbanner > div.img_height > img.show').show();
		setInterval('slideShow()', 5000);
	}
	
	
});


// SLIDESHOW FUNCTION
function slideShow() {
	var curr = $('#mainbanner > div.img_height > img.show');
	if(curr.is('img:last-child')) {
		$('#mainbanner img:first-child').addClass('show').fadeIn(1000).siblings('img').removeClass('show').fadeOut(1500);
	} else {
		curr.next('img').addClass('show').fadeIn(1000).siblings('img').removeClass('show').fadeOut(1500);
	}
	
}

