/* Copyright (C) 2005-2009 Brothers Media */


// HREF TARGET //
$(document).ready( function() {
	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});
// HREF TARGET END //


// SLIDER //			
$(document).ready(function(){ 
	$("#frontpage-portfolio").easySlider({
		controlsShow:	false,
		continuous: true			
	});
});
// SLIDER END //		
			
			
// PORTFOLIO //
/* Author Christopher Wallace */
$(document).ready( function() {
	$('.entry-content a span.slide-title').css({opacity : 0.0}).parent('a').append('<span class="cover-up"></span>');
	$('.entry-content a').mouseover(function(e){jQuery(this).find('img.thumbnail').stop().animate({marginTop : '0px'}, 100).parent('a').find('span.slide-title').stop().fadeTo("slow",0.8);});
	$('.entry-content a').mouseout(function(e){
      jQuery(this).find('img.thumbnail').stop().animate({
	  	marginTop : '0px'
	  }, 100).parent('a').find('span.slide-title').stop().fadeTo("slow",0.0);
	});
}); 
// PORTFOLIO END //

