// JavaScript Document


$(document).ready(function() {
	Shadowbox.init({
    	//overlayColor: "#0f6491",
		overlayOpacity: .8
	, 
	flashParams: { 
        wmode:"transparent", 
     	allowFullScreen: 'true' 
    },
    flashVars: { 
       autostart: 'true',
	   controlbar: 'over'
    } 
	});
	
	
	$(".openjob").click(function () {
		var id = $(this).attr("id");
		$('#exec-content').html('');
		
		$('.personbox').lightbox_me({
       	 centered: true, 
       	 onLoad: function() { 
		 	$('#exec-content').hide();
           	$('#exec-content').load('jobs/'+id+'.html');
			$('#exec-content').fadeIn('fast');
       	 }
		});
	});
	
	
	   
		
	$(".getperson").click(function () {
									
		var id = $(this).attr("id");
		$('#exec-content').html('');
									
									
		$('.personbox').lightbox_me({
       	 centered: true, 
       	 onLoad: function() { 
		 	$('#exec-content').hide();
           	$('#exec-content').load('execs/'+id+'.html');
			$('#exec-content').fadeIn('fast');
       	 }
		});
	});
	
	$('#quotes').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 8000,
		random: true
	});
	
	$(".more").click(function () {
		$(this)	.siblings('.hidden').slideToggle('slow');
		$(this).children("p").toggle();
	});
	
	$(".readcase").click(function () {
		$("#casecopy").slideToggle('slow');
		$('#showfullcase').children("p").toggle();

	});
	
	
	$("a[rel='print']").colorbox(
	{
		transition:"fade",
		width:"95%",
		height: "95%"
	});
	
	$("a[rel='web']").colorbox(
	{
		transition:"fade",
		width:"95%",
		height: "95%"
	});
	
	$("a[rel='live']").colorbox(
	{
		transition:"fade",
		width:"95%",
		height: "95%"
	});
	
	$("a[rel='outdoor']").colorbox(
	{
		transition:"fade",
		width:"95%",
		height: "95%"
	});
	
	
});

