

// FANCYBOX===============================================================================
$(document).ready(function() {
			
$("a.box").fancybox({
				'titleShow'		: true,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titlePosition'	: 'over',
				 'overlayOpacity': '0.8',
				 'padding': 2, // optional
				  'overlayColor': '#000'
			});
			
			
			
			$("a[rel=group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
		});
	
	
// PORTFOLIO HOVER EFFECT ===============================================================================		    
    $(document).ready(function() {
        $('.project').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '180', left: '0', top: '0', width: '270'}, 400);
            $(this).children('a').children('span').fadeIn(800);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '250', left: '0', top: '0', width: '360'}, 400);
            $(this).children('a').children('span').fadeOut(200);
        });


// menu===============================================================================
});
	// initialise plugins
		jQuery(function(){
			jQuery('ul.sf-menu').superfish();
		});
