$(document).ready(function() {
	$("#body-background").ezBgResize();
});

/* ================================ +
           TRANSPARANTY FUNCTIONS
 + ================================ */      
      
     $(document).ready(function() {
      $('.chose').transify({
     opacityOrig:.8,
      opacityNew:.8
      });
      

      
	});
	
	
$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	
	
	//Horizontal Sliding
	$('.chose.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'515px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	
});

$(function(){
	$('.selecter').mobilyselect({
		collection: 'all',
		animation: 'absolute',
		duration: 500,
		listClass: 'selecterContent',
		btnsClass: 'selecterBtns',
		btnActiveClass: 'active',
		elements: 'li',
		onChange: function(){},
		onComplete: function(){}
	});
});


