

var Effects = {
	init : function() {
		//fix menu ie6
		$("#mainMenu a").each(function(index) {
			$(this).hover(function() {$(this).addClass("hover");}, function() {$(this).removeClass("hover");});
		});
		
		$('a.thickbox').each(function(a) {
			if(!$(this).hasClass('noajax')){
				var link = $(this).get(0).href + "&ajax=1";
				$(this).get(0).href = link;
			}	
		});
		

		$("input[type='image']").each( function () {
			link = '';
			$(this).hover(function() {
				link = $(this).attr('src');	
				var id = $(this).attr('id');
	
				switch (id) {
					case "button_hledat":
						link = "/file/14358/hledat.png";
 						var activeLink = "/file/14546/hledat_active.png";
  						break;
					case "bg_form_submit": 		
						link = "/file/14590/odeslat.png";		
						var activeLink = "/file/14592/odeslat_active.png";
  						break;
					case "button_newsletter":
						link = "/file/16040/button_newsletter.png";
 						var activeLink = "/file/16042/button_newsletter_active.png";
  						break;

					case "button_cook_search":
						link = "/file/14584/recepty.png";
 						var activeLink = "/file/16344/recepty_active.png";
  						break;


					default:
						; 
				}
				$(this).attr('src',activeLink);

			}, 
			function() {
				$(this).attr('src',link);
			});

		});

	}
}

function ajax(place, url) {
	$("body").unbind("click");
	$.ajax({
		url: url,
		cache: false,
		beforeSend : function () {  
			$("#"+place).html("<div style=\"width:100%; padding:20px 0px; height:119px; _height:159px; text-align:center;\"><img src=\"/public/94/23/1/14703_16691_loading.gif\" alt=\"Nahrávám...\"></div>");
		},
		success: function(html){
			$("#"+place).html(html);
			$(document).ready(function(){ tb_init('a.thickbox'); });
		}
	});
}




