// JavaScript Document
jQuery(document).ready(function(){
						   
jQuery.noConflict();


jQuery("#mainMenu > li").hover(function(){
		jQuery(this).addClass("hover");
	},function(){
		jQuery(this).removeClass("hover");		   
})



/*
jQuery("#mainMenu > li > ul").each(function (i) {
		jQuery(this).height(jQuery(this).height())
   });

		

jQuery("#mainMenu > li ").hover(function(){
		jQuery(this).children("ul").stop().slideDown("slow");

	},function(){
		jQuery(this).children("ul").hide();

})
*/






jQuery(function(){jQuery(document).pngFix();})

/*
-----------------------------------------------
/ Equalize height of the Graphic Teasers on the same line
-----------------------------------------------
*/ 





/*
-----------------------------------------------
/ Equalize height of the Text Teasers on the same line
-----------------------------------------------
*/ 








// if there are less than three teasers on a row, we need to clear the content or it won't take into consideration the .graphicTeaser{margin-bottom: 10px;}
if(jQuery.browser.msie){
     jQuery(".teasers").append('<br style="clear: both; />"');
}

});