iPhone = false;
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i)))
	iPhone = true;

jQuery(document).ready(function(){
	if(iPhone)
		jQuery("body").addClass("touch");

    $("#content ul.gallery li, #content div.editorials ul li").hover(function(){
    	$(this).find("img,span.caption").animate({opacity: 1},300);
    },function(){
    	$(this).find("img,span.caption").animate({opacity: 0.8},300);
    });
    
    $("a.colorbox").colorbox({
        opacity:0.5
    });
});
