jQuery(function() {
	if((jQuery.browser.msie) && (jQuery.browser.version <=6)) {
		jQuery('#menu > ul > li')
			.mouseover(function(){$(this).addClass('over');})
			.mouseout(function(){$(this).removeClass('over');});
	}
		
	jQuery('#menu ul ul li:last-child').addClass('last-child')
	jQuery('.breadcrumbs li:last-child').addClass('last-child')
		
	jQuery.fn.maxizer=function() {	
		var arr=[];
		var maxim=0;
		jQuery(this).each(function(i){
			arr.push(jQuery(this).height());
			maxim=Math.max(maxim,arr[i]);
		});
		jQuery(this).height(maxim);
	}	
	
jQuery('.box-top').maxizer();
jQuery('.box').maxizer();
jQuery('#gallery li:nth-child(2n)').css('margin-right','0');

var iH = jQuery('.img img').height()
var iW = jQuery('.img img').width()
jQuery('.img p').height(iH-10)
jQuery('.img p').width(iW-20)

/*
* Equalizing
*/

var cH = $('#center').height();
$('#left').height(cH+30)
var imgH = $('#left .img').height();
$('#submenu').css('padding-bottom',imgH)

$('.imageGallery a').lightBox();

});
