var isIE6 = ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined))
$(function(){
    if ($.prettyPhoto) {
        $("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'facebook', default_width: 640, default_height: 360 });
    }
	$('#selectGenre').click(function(){
		$('#selectGenreDrop').show('fast')
	});
	$('#selectGenreDrop').click(function(event){
		event.stopPropagation()
	});
	$('#selectGenreDropFille').click(function(event){
		$('#genre')[0].value='f'
		$('#selectGenreCurrentFille').show()
		$('#selectGenreCurrentHomme').hide()
		$('#selectGenreDropFille').addClass('selected')
		$('#selectGenreDropHomme').removeClass('selected')
		$('#selectGenreDrop').hide('fast')
	});
	$('#selectGenreDropHomme').click(function(event){
		$('#genre')[0].value='h'
		$('#selectGenreCurrentFille').hide()
		$('#selectGenreCurrentHomme').show()
		$('#selectGenreDropFille').removeClass('selected')
		$('#selectGenreDropHomme').addClass('selected')
		$('#selectGenreDrop').hide('fast')
	});
	$('.messages').click(function(){
    	$(this).fadeOut(700);
    });
});
var popup = function(dest, width, height){
	if (typeof width == 'undefined') {
		var width = screen.width * 0.85
	}
	if (typeof height == 'undefined') {
		var height = 725
	}
	if (screen.width <= 1280 || screen.height <= 800) {
		// On ouvre en full si la r�solution est inf�rieure ou �gale � 1280x800
		width = screen.width
		height = screen.height
	}
	var top = Math.max(0, (screen.height - height) / 2 - 40)
	var left = (screen.width - width) / 2
	var date = new Date()
	var id = date.getTime()
	var popup = window.open(dest, 'popup' + id, 'toolbar=no, location=no, directories=no, scrollbars=yes, menubar=no, resizable=yes, status=no, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left);
	if(popup)popup.focus();
}

