$(function() {
	$('ul.sf-menu').superfish({
		delay :500,
		animation : {			
			height : 'show'			
		},
		speed : 'fast',
		autoArrows : false,
		dropShadows : false
	});    
	$('.jcarousel-skin-tango').jcarousel();
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme : 'facebook'
	});
    $(".b-content img[src*=/c_]").each(function(){        
        $(this).wrap('<a href="'+this.src.replace("/c_", "/m_")+'" title="'+
        this.title+'" rel="fancybox"></a>');
    });
    $(".b-content a[rel=fancybox]").fancybox({});
	$(".ie7 ul.sf-menu ul>li").each(function() {
		var li = $(this);
		li.width(li.parent().width())
	});
});

