//Digging around eh?
//This is for the my predesigned page
//this script is original and copywrited
$(function(){
	
	//hover function for web images
	$('.weblink').hover(function(){
		$(this).append('<div class="weblink-inner"><img src="images/viewwebsite.png" /></div>');
		$(this).children('.weblink-inner').css({opacity:0}).fadeTo('normal', 0.8);	
	}, function(){
		$(this).children('.weblink-inner').fadeOut('normal', function(){$(this).remove();});
	}).bind('click', function(){
		window.open($(this).attr('href'));
		return false;
	});
	
});


