$(document).ready(function(){
	
	/* Activate if site has PNG's
	$("#content").pngFix(); 
	*/
	
	$('#search').emptyonclick();
	
	/*Activate if site has tag search
	$("#search").autocomplete("/ajax/autocompleter_tags.php", {
		width: 260,
		selectFirst: false
	});
	*/
	
	h = $("#intro").height() + 252;
	if(h>252)
		$("#dottedline").css('margin-top',h);
	else{
		$("#dottedline").css('height',0);
	}
	
	
    $(".addbasketicon")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "-hover.jpg";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("-hover", "");
            $(this).attr("src", src);
        });
		
		
});

