//=================Slider by BOPOH
var img=2;
function slideshow() {
var img_path="url(catalog/view/theme/default/image/head"+img+".png)";
$("#pictrotator").animate({opacity:0.0},700,function(){
$("#pictrotator").css("background-image",img_path);
});
$("#pictrotator").animate({opacity:1.0},1000);
img++;
if(img==3)
img=1;
}
$(function() {

 setInterval(slideshow, 6000);

});