/*NEW WINDOW START---------------------------------*/
function OpenWindow(theURL,winName,features) {
//('special/benefit.html','specialWin','width=800,height=575,resizable=no,scrollbars=no')
var winop = window.open(theURL,winName,features);
winop.focus();
void(0);
}
/*NEW WINDOW END---------------------------------*/

/*BTN EFFECT---------------------------------*/
function btnEffect(){
	$('a.btnEffect').hover(
		function (){$(this).find('img').css('opacity','0.7');},
		function (){$(this).find('img').css('opacity','1');}
		);
}
$(document).ready(btnEffect);
/*BTN EFFECT---------------------------------*/

/*NEW PNGFIX START---------------------------------*/
$(document).ready(function(){
	if ($.browser.msie && $.browser.version < 7.0){
			DD_belatedPNG.fix('img,div,a,li,p');
	}
});
/*NEW PNGFIX END---------------------------------*/
