/*jQuery.noConflict();*/
jQuery(function($) { 
		
	/*
	// Full page background
	$.supersized({
		//Background image
		slides	:  [ { image : 'http://dynarythmique.be/drupal/sites/all/themes/dynarythmiquenew/img/bg1.jpg' } ]
	});
	*/

	
	// Fullsize bg	*/
	
$(function() {   

	var theWindow        = $(window),
	    $bg              = $("#bg"),
	    aspectRatio      = $bg.width() / $bg.height();

	function resizeBg() {

		if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
		    $bg
		    	.removeClass()
		    	.addClass('bgheight');
		} else {
		    $bg
		    	.removeClass()
		    	.addClass('bgwidth');
		}

	}

	theWindow.resize(function() {
		resizeBg();
	}).trigger("resize");

});



	// Scroll to Top
	$('#toTop').click(function() {
		$('#content-wrapper').animate({scrollTop:0},600);
	});	

});
