// JavaScript Document

$(document).ready(function(){
	
	////////////////////////////////////// accordion 
	
		lastBlock = $("#first");
		maxWidth = 500;
		minWidth = 78;	
	
		$("ul li .bob, ul li .bob2").click(
			function(){
				$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:200 });
				$(this).animate({width: maxWidth+"px"}, { queue:false, duration:200});
				lastBlock = this;
			}
		);

	////////////////////////////////////// open all links inside 'bob' in an iframe
	
		$('.bob a, .tabblock a, wpa_marquee').not('.gallery a').click( function() { 
			var linkURL = $(this).attr('href');
			//alert(linkURL);
			$.prettyPhoto.open(linkURL+'?iframe=true&width=800&height=410&scrolling=auto');
			return false;
		});
	
	////////////////////////////////////// odds and ends
	
		$('.member:nth-child(4n)').css({marginRight:"0"});
		
		$('.work').hover(function () { $('h4',this).css({color:"#ed1c24"}); },function () { $('h4', this).css({color:"#999999"}); });
		
//	$('.footer_holder').click(function()	{$('.tabinner').slideToggle('slow', function() {});});
	
	$('.quick_menuoverlay').click(function () {if ($('.tabinner').is(':hidden')) {$('.tabinner').slideDown('slow');} else {$('.tabinner').slideUp('slow');}});


		//$('.footer_holder').click(function() {$(this).next().slideToggle();});
});


		
