jQuery(function($) {
	
	//IE fixes
	if ($.browser.msie) {
		
		//All IE
		$('#top5 li:first-child').addClass('first-child');
		
		//IE6
		if ($.browser.version <= 6){
		}
	}
	
	
	//emptyOnFocus
	$('#newsletter form').emptyOnFocus();
		
	//Dialogs
	//Help Dialog (register)
	$('button.help').click(function(){
		$('#help').dialog({
			bgiframe: true,
			draggable: false,
			resizable: false,
			width: 400,
			close: function(event, ui) {
				$(this).dialog('destroy');
			}

		});
		return false;
	});
	
	
	//Add Comment Dialog
	$('#add-comment').click(function(){
		$('#add-comment-dialog').dialog({
			bgiframe: true,
			draggable: false,
			resizable: false,
			width: 500,
			modal: true,
			close: function(event, ui) {
				$(this).dialog('destroy');
			}

		});
		return false;
	});
	
	//Add Comment Dialog
	$('div.more a[href="#details"]').click(function(){
		$('#detail').dialog({
			bgiframe: true,
			draggable: false,
			resizable: false,
			width: 400,
			close: function(event, ui) {
				$(this).dialog('destroy');
			}

		});
		return false;
	});
	
	//Envoyer à un ami dialog
	$('#envoi-ami').click(function(){
		$('#add-comment-dialog').dialog({
			bgiframe: true,
			draggable: false,
			resizable: false,
			width: 500,
			modal: true,
			close: function(event, ui) {
				$(this).dialog('destroy');
			}

		});
		return false;
	});	
	
});