$(function () {
/* --------------------top tabs and that--------------------*/
	var tabContainers = $('div#tabs > div');
	tabContainers.hide().filter(':first').show();
	
	$('div#tabs ul.nav a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).fadeIn('fast');
		$('div#tabs ul.nav a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});
/* -------------------slidie work box guys-------------------*/
$(document).ready(function(){
	$('#w1').hover( function() {
		$('#w1slide').slideDown('slow');
	}, function(){
		$('#w1slide').stop(true, true).slideUp('slow');
	});
	$('#w2').hover( function() {
		$('#w2slide').slideDown('slow');
	}, function(){
		$('#w2slide').stop(true, true).slideUp('slow');
	});
	$('#w3').hover( function() {
		$('#w3slide').slideDown('slow');
	}, function(){
		$('#w3slide').stop(true, true).slideUp('slow');
	});
/* --------------------Photo popup blokes--------------------*/
$('.images').hover( function() {
	$('#placeholder').html('<p><img src="images/load.gif" width="20" height="20" /></p>');
	$('#placeholder').load("photos.php " + $(this).attr('href'));
}, function(){
	$('#placeholder').html('<p>Hover to Embiggen! Click for info.</p>');
	});
	$('.images').click(function(){
		$('.caption').slideDown('slow');
	});
});
