jQuery(function(){
	jQuery("div#destacadas").carousel( { loop: true } );
});

function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
    	var thisHeight = jQuery(this).height();
    	if(thisHeight > tallest) {
    		tallest = thisHeight;
    	}
    });
    group.height(tallest+60);
}


jQuery(document).ready(function(){
	jQuery(document).pngFix(); 
    jQuery("#servicios li").hover(
		function () {
			jQuery(this).append(jQuery("<span class='ticket'></span>"));
		}, 
		function () {
			jQuery(this).find("span:last").remove();
		}
	);
	equalHeight(jQuery(".not"));
});

