$(document).ready(function() {
	//png fix
	$("img[src$='.png'], div#teaser_buttons").ifixpng();
	
	//hover items (css hover not supported by ie6)
	$("li.menu_item, .btn_login, .btn_order, .btn_trial, li.submenu_item, .btn_order_small").mouseenter(function(){
	   $(":first-child", this).addClass("hover");
	}).mouseleave(function(){
	   $(":first-child", this).removeClass("hover");
	});
});