// jQuery Plugin equalHeight

(function($) {
	$.fn.equalHeight = function() {
		var group = this;
		$(window).bind('resize', function(){
			var tallest = 0;
			$(group).height('auto').each(function() {
				tallest = Math.max(tallest, $(this).height());
			}).height(tallest);
		}).trigger('resize');
	}
})(jQuery)


$(document).ready(function(){

$(".fullCat").colorbox({iframe:true, width:"65%", height:"90%"});

$(".activeLink[rel^='prettyPhoto']").prettyPhoto({
animation_speed: 'fast',
slideshow: false,
autoplay_slideshow: false,
opacity: 0.80,
show_title: true,
allow_resize: false,
default_width: 600,
default_height: 567,
counter_separator_label: '/',
theme: 'facebook',
hideflash: false,
wmode: 'opaque',
autoplay: false,
modal: false,
overlay_gallery:false,
keyboard_shortcuts: true
});





});


$(window).load(function(){

	$(".catImg").equalHeight();

});
