/*Topmenu*/
$(document).ready(function(){
	   var $cur;
		$(".top_secondary").hide();
		$("a.topa").hover(function(){$(this).next(".menuel .top_secondary").show(); $cur = $(this);}, function(){$(this).next(".menuel .top_secondary").hide();});
		$(".menuel .top_secondary").hover(function(){$(this).show(); $cur.addClass('section')}, function(){$(this).hide(); $cur.removeClass('section'); Cufon.replace($cur,{color: '#091038'})});
	});

function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
        tallest = thisHeight;
        }
    });
    group.height(tallest);
}
$(document).ready(function() {
    equalHeight($("h2.product_title"));
});