jQuery(document).ready(function($){
	$('#trusted_scroll').jcarousel();

	$('.pic_a').next('ul').hide();
	$('.pic_a').hover(
		function(){$(this).next('ul').show()},
		function(){$(this).next('ul').toggle()}
	)
	$('.pic_a').next('ul').hover(function(){$(this).show()}, function(){$(this).hide()});
	
	$('.gal_h3').click(function(){$(this).next(".gallery_outer").toggle();return false;})
})

function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
        tallest = thisHeight;
        }
    });
    group.height(tallest);
}
jQuery(document).ready(function($) {
    equalHeight($(".gallery_item_inner"));
});
