jQuery(document).ready(function($) {
	$("#filters ul").css('display', 'none');
	//$("#filters a.bt-toggle").attr('href', '#');
	$("#filters a.bt-toggle").click(
		function(){
			$("#filters ul").slideToggle('fast', 'easeInOutExpo');
			return false;
		}
	);
	$("li.work").hover(
		function(){
	  		$(this).find(".work-resume").animate(
  				{
    				marginTop: '0'
    			},
    			'fast',
    			'easeInOutExpo'
  			);
		},
		function(){
	  		$(this).find(".work-resume").animate(
  				{
    				marginTop: '228px'
    			},
    			'fast',
    			'easeInOutExpo'
  			);
		}
	);
	$("a.waouh").hover(
		function(){
	  		$(this).find(".preview-img-hover").animate(
  				{
    				opacity: '0'
    			},
    			'slow',
    			'easeOutExpo'
  			);
		},
		function(){
	  		$(this).find(".preview-img-hover").animate(
  				{
    				opacity: '0.8'
    			},
    			'fast',
    			'easeOutExpo'
  			);
		}
	);
});
