/**
*   help amd win js
*/
jQuery(document).ready( function() { 
	$jq("#overPermanentPromo").bind( 'clickoutside', function(event){
		if ( $jq(this).is(".imOut") ){
			$jq(this).mouseleave();
		}
	});
	$jq("#overPermanentPromo").mouseleave( function() {
		if ( $jq(this).is(".imOut") ){
			$jq(this)
				.removeClass("imOut")
				.animate( { width: '0' }, "fast" )
				.animate( { height: '0' }, "fast")
				.hide("fast");
		}
		return false;
	});		
	$jq(".bottomText a").click( function() { return false; }).mouseenter( function(){
		if ( !$jq(this).is(".imOut") ){
			$jq("#overPermanentPromo")
				.addClass("imOut")
				.animate( { height: '157' }, "fast" )
				.animate( { width: '430' }, "fast" )
				.show("normal");
		}
		return false;
	});
	$jq(".btnParticipate").click( function() {
		window.location = str_participate_link;
	});
});
