/* Image slider in start page */
function initHomeSlider() {
	jQuery(function() {
		jQuery("#slideshow").cycle({
		    speed: 2000,
		    timeout: 50,
			pause: 1
		});
	});
}

$(document).ready(function() {

	$('.img_entrances').imghover({});

	/* Sub menu slider (Superfish) */
	$('ul.sf-menu').superfish({ 
		delay:       300,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  true,                           // disable generation of arrow mark-up 
		dropShadows: true                            // disable drop shadows 
	});
	
});

var clickedSearch = false;
function checkSearchClick(id, str) {
	if(!clickedSearch && $("#" + id).val() == str) {
		$("#" + id).val("");
		clickedSearch = true;
	}
}