jQuery.noConflict();

jQuery(document).ready(function() {
	
		jQuery("img").removeAttr("alt");
		jQuery("#menu li").first().css("margin-left", "0px");
		jQuery(".publicatie_item").last().css("margin-right", "0px");
		
		jQuery("div#quote li").show();
		//jQuery("div#quote li").first().show();
		
		jQuery("input#zoeken").focus(
			function()
			{
				if(jQuery("input#zoeken").attr("value") == "zoeken")
				{
					jQuery("input#zoeken").attr("value", "");
				}
			}
		);
		
		jQuery("input#zoeken").blur(
			function()
			{
				if(jQuery("input#zoeken").attr("value").trim() == "")
				{
					jQuery("input#zoeken").attr("value", "zoeken");
				}
			}
		);

		if (jQuery.browser.msie) {
			jQuery('#quote ul').cycle(
					{ 
						fx: 'none', 
						speed: 2000,
						timeout: 4000,
						random: 1,
						cleartype:true
					}
				);
		} else {
			jQuery('#quote ul').cycle(
					{ 
						fx: 'fade', 
						speed: 1000,
						timeout: 4000,
						random: 1,
						cleartype:true 
					}
				);
		}
		
		jQuery("#container").show();	
	}
);
