$(document).ready(function(){
	// corners for buttons
	$('a.button').corner("10px");
	$('#home-right').corner("8px");
	
	// clear value in search field	
	$('#recherche, #email-newsletter').focus(function() {
		if( this.value == this.defaultValue ) {
		this.value = "";
    }
	}).blur(function() {
		if( !this.value.length ) {
		this.value = this.defaultValue;
		}
	});
	
	// menu top
	$("#menu-top .menu-drop").superfish({
		animation : { opacity:"show", height:"show" },
		delay : 100
	});

	// tag
	var fiche = $("#fiche-produit").eq(0);
	if (fiche.length == 1) {
		fiche.parents('body').append('<script type="text/javascript" src="http://track.shop2market.com/track_visit.js?shop_code=145"></script>');
	}
});
  
// insert flash file
function flash(file, width, height) {
	document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="loop" value="true" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('</object>\n');
}