$(document).ready(function(){
	var site_msn = 'cannes2008.cinema.fr.msn.com';
	var site_canalplus = 'cannes2008.canalplus.fr';
	var url_recherche = 'http://search.live.com/results.aspx';
	
	var recherche = 'form#search input#q';
	var form = 'form#search';
	
	$(form).submit(function(){
		if($(form+' input:radio:checked')[0].value=='site'){
			document.location = url_recherche+'?q='+encodeURI($(form+' input#q')[0].value+' (site:'+site_canalplus+' OR site:'+site_msn+')');
			try {eval('Msn.Report.TrackForm($(form))')}catch(e){};
			return false;
		}
	});
	
	$(recherche).focus(function(){
		if(this.value=='Rechercher')
			this.value='';
	});
	
	$(recherche).blur(function(){
		if(this.value=='')
			this.value='Rechercher';
	});

	window.scrollTo(($('div#ctl00_contener').width()-$(window).width())/2, 0);
});