$(document).ready(function() {
		
		$('.reflection a').vflection({
 			color:'#000', 
 			darkness: 2.5,
 			opacity: 12
 		});
 		
 		$('.reflection a').hover(function() {
 			$(this).parent().children('div').children('.text').css('color' , '#984082');		
 		}, function() {
 			$(this).parent().children('div').children('.text').css('color' , '#000');
 		})
 		
 		$('.sidecontainer').hover(function() {
 			$(this).fadeTo(200,1);
 		}, function() {
 			$(this).fadeTo(500,0.7);
 		})
 		
});
