jQuery(document).ready(function(){
	jQuery(".lightbox").lightBox();
	
	jQuery(".gallery-image-wrapper").each(function(){
		alignPicture(this);
	});
	
      if(jQuery.browser.mozilla) {
    	  jQuery("body").css("overflow-y","scroll");
      }		   

	jQuery("#shirttabs").tabs();
	
	var img0 = new Image;
	img0.src = "/images/de/basket.png";
	var img1 = new Image;
	img1.src = "/images/de/basketon.png";
	
	jQuery(".basket").hover(
		function(w){
			$(this).attr("src",img1.src);
		},
		function(w){
			$(this).attr("src",img0.src);
		}
	);
});

function alignPicture(pic) {
	var t = jQuery(pic);
	var i = jQuery(pic).find("img");
	//kvuli zaokrouhlovani
	if(i.width() > t.width() - 2
	|| i.height() > t.height() -2) {
		i.css("margin-left",(Math.round(t.width()-i.width())/2)+"px");
		i.css("margin-top",(Math.round(t.height()-i.height())/2)+"px");
	} else {
		setTimeout(function(){alignPicture(pic);},300);
	}
}