//var $ = jQuery.noConflict();
$(document).ready(function() {	
	$('a.portfolio-modal-anchor, a.contactform-modal-anchor').children('span').animate({opacity: 1}, 100);
	$('a.portfolio-modal-anchor, a.contactform-modal-anchor, a.portfolio-colourbox-image').hover(	   		
			function(){				
				$(this).children('img').stop().animate({opacity: .4}, 600);
				$(this).children('span').stop().animate({opacity: 1, bottom: '0px'}, 300);},				
			function(){					
				$(this).children('img').stop().animate({opacity: 1}, 600);
				$(this).children('span').stop().animate({opacity: 0, bottom: '-20px'}, 600);				
	});
	$(".portfolio-modal-anchor").colorbox({iframe:true, innerWidth:950, innerHeight:560});
	$(".route-modal-anchor").colorbox({iframe:true, innerWidth:660, innerHeight:560});
	$(".email-modal-anchor").colorbox({iframe:true, innerWidth:660, innerHeight:560});	
	$(".contactform-modal-anchor").colorbox({href: 'contactform.php', iframe:true, innerWidth:660, innerHeight:560});
	
	$(".product-modal-anchor").click(function() { 														
    	var _id = "#content_"+$(this).attr('id');
        $(this).colorbox({width:660, height:560, inline:true, href:_id, open:true}); 
    }); 
	
});
