    
	$(function(){
       /* var width = 400;
		var height = 390;
		var imgWidth = 200;
		var sliding = false;
		
		// setup each image slider
		$('.awImageSlider').each(function() {
			 var parent = this;
			 $(this).css({
			 	height: height +'px',
				width: width +'px',
				position: 'relative'
			 });
			 
			 $('.preview',this).css({
			 	height:    '75%',
				width:     '96%',
				border:    '1px solid #cfcfcf',
				padding:    '10px'
			 });
			 
			 $('.preview img',this).css({
			 	'margin-left': imgWidth/2+'px'
				 
			 });
			 
			 $('.caption',this).css({
			 	height: '10%',
				width:  '96%',
				padding: '5px',
				'margin-top': '3px'
			 });
			 
			 $('.gallery',this).css({
			 	height: '70px',
				width: '96%',
				'margin-top':'5px'
			 });
			 
	         $('.gallery li',this).css({
			     'float':'left',
				 'margin-right':'3px',
				 'opacity':'0.5',
				 'cursor':'pointer'
			 });
			 
			
			$('.gallery-viewport',this).css({height:'70px',position:'relative','overflow':'hidden','left':'29px','width':width-30+'px'})
			$('span.left',this).css({'position': 'absolute','top':height-60+'px','cursor':'pointer'});
			$('span.right',this).css({'position':'absolute','top':height-60+'px','left':width+3+'px','cursor':'pointer'});
			$('.gallery',this).css({width:($('.gallery li',this).length * 54)+'px','left':'0px','position':'relative'});
			 
		     $('.gallery li',this).each(function() {
			  	$('span',this).hide();
				$('p',this).hide();
				$('img.item',this).attr('width',50);
			 });
			 
			 
			 $('.preview img',this).attr('src',$('.gallery li:nth(0) img',this).attr('src'));
			 $('.caption span',this).html($('.gallery li:nth(0) span',this).html()).css({'font-weight':'bold','color':'#77B3EF'});
			 $('.caption p',this).html($('.gallery li:nth(0) p',this).html()).css({'font-size':'11px'});
		     
			 
			//hover states
			$('.gallery li',this).hover(
			     function() {
				    $(this).css({'opacity':'1'})	
				 },
				 function() {
				 	$(this).css({'opacity':'0.5'})
				 }
			); 
		
		
		     // attach left and right button events
            $('span.left',this).click(function() {
				var left = $('.gallery', parent).css('left');
				left = left.match(/(\-?\d+)px/)[1]
				if (left < 0 && !sliding) {
					sliding=true;
					$('.gallery', parent).animate({left: '+=50px'},500,function(){sliding=false;});
				}
            });
            
            $('span.right',this).click(function() {
                var left = $('.gallery', parent).css('left');
				var length = $('.gallery li',parent).length *50;
				var maxLeft = (width-30)-length;
                left = left.match(/(\-?\d+)px/)[1]
                if (left > maxLeft && !sliding) {
                    sliding=true;
                    $('.gallery', parent).animate({left: '-=50px'},500,function(){sliding=false;});
                }
            });
			
			//attach click events on images
		    $('.gallery li',this).click(function() {
				//console.log(this);
				$('.preview img',parent).attr('src',$('img',this).attr('src'));
				$('.preview .caption span',parent).html($('span',this).html());
				$('.preview .caption p',parent).html($('p',this).html());
			});
		});
		
		
		//banner blob
		$('#banner-blob span').hide();
		$('#banner-blob span:nth(0)').addClass('current').fadeIn();
		
		setInterval(function() {
		  $('#banner-blob span.current').fadeOut('500',function() {
		      $(this).removeClass('current');
			  if($(this).next('span').length) {
			  	$(this).next('span').addClass('current').fadeIn(500);
			  } else {
			  	$('#banner-blob span:nth(0)').addClass('current').fadeIn(500);
			  }
		  });
		},5000)*/
	});
