jQuery(function($) {
	/* METTRE TOUS LES SCRIPTS POUR LE SITE ICI PLUTOT QUE DIRECTEMENT DANS LA PAGE! */
	
	
    /* ***************************************************************
        OUVERTURE DES LIENS EXTERNE DANS UN NOUVEAU TAB / WINDOW 
        Note : ajouter class="in" si vous voulez qu'il s'ouvre 
               dans la même fenêtre.
    *************************************************************** */
	jQuery('a[href^=http]:not(.in)').attr({'target':'_blank'});

	jQuery(/*"#latest-releases li a,*/ ".artist #right-single ul li a"/*, #lst-news a"*/).fancybox({
	    //'autoScale': false,
	    'transitionIn': 'none',
	    'transitionOut': 'none',
	    'titleShow': true,
        'titlePosition':'inside'
	});
	jQuery(window).load(function() {
		if (jQuery('#left').outerHeight() > jQuery('#right').outerHeight()) jQuery('#right').height(jQuery('#left').height()+27);
	});
	
	jQuery(window).scroll(function() {
		if (window.console) {
			window.console.log(jQuery(window).scrollTop());
		}
	});
});

function fixH(one, two) {
    if (document.getElementById(one)) {
        var lh = document.getElementById(one).offsetHeight;
        var rh = document.getElementById(two).offsetHeight;
        var nh = Math.max(lh, rh);
        document.getElementById(one).style.height = nh + "px";
        document.getElementById(two).style.height = (nh + 28) + "px";
    }
}
window.onload = function () {
	//alert(jQuery('#left').outerHeight()+' '+jQuery('#right').outerHeight());

   //fixH('left', 'right');
}
