if(Drupal.jsEnabled) {
	$(document).ready( function() {

		$('div.view-web-portfolio ul li img.imagecache-Site-Portfolio-Screenshot-Teaser').height('75%');
		$('div.view-web-portfolio ul li img.imagecache-Site-Portfolio-Screenshot-Teaser').width('75%');
		
		$('div.view-web-portfolio ul li img.imagecache-Site-Portfolio-Screenshot-Teaser').hover( function() {
			$(this).stop().animate({
				width: "100%",
				height: "100%"
			},150) 
		}, function() {
			$(this).stop().animate({
				width: "75%",
				height: "75%"
			},300)
		});
		
		$('#views_slideshow_thumbnailhover_breakout_teasers_1 img').hover( function() {
			$(this).stop().animate({
				width: "100%",
				height: "100%"
			},150)
		}, function() {
			$(this).stop().animate({
				width: "80%",
				height: "80%"
			},300)
		});	
		
		//$('ul li a').css('background-image', 'url(http://frankrobertanderson.com/sites/all/themes/FRA2/images/texture.png)');
	})
}	