$(document).ready( function() {
	$('#navCanOfWhat').mouseover(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_canOfWhat_on.png');
	});
	
	$('#navPortfolio').mouseover(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_portfolio_on.png');
	});
	
	$('#navservices').mouseover(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_services_on.png');
	});
	
	$('#navServices').mouseover(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_services_on.png');
	});
	
	$('#navPhotography').mouseover(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_photography_on.png');
	});
	
	$('#navCanOfWhat').mouseout(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_canOfWhat.png');
	});
	
	$('#navPortfolio').mouseout(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_portfolio.png');
	});
	
	$('#navservices').mouseout(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_services.png');
	});
	
	$('#navServices').mouseout(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_services.png');
	});
	
	$('#navPhotography').mouseout(function() {
		if($(this).attr('class').indexOf('activeNav') == -1) $(this).attr('src','assets/nav_photography.png');
	});
	
	$('.stripeThumb').mouseover(function() {
		$(this).css('border','1px solid #fff');
	});	
	$('.stripeThumb').mouseout(function() {
		$(this).css('border','1px solid #000');
	});	
});

