//jQuery Func
jQuery(function($){
	$('#content .col:last').addClass('last');
	$('p').each(function() {
		if ($(this).html() == '') {
			$(this).remove();
		}
	});

	//Images Fade
	$('.project-fader ul, .product-details .left ul').fader({
		'speed' : 1250,
		'timeout' : 6000
	});

	//Buttons for Project Fader
	$('.project-fader').mouseenter(function(){
		$(this).find('.fader-navButtons').show();
	 }).mouseleave(function(){
	 	$(this).find('.fader-navButtons').hide();
  	});

	 //Project Pictures Popup
	$('#content .project-fader a.caption').colorbox({
		opacity: 0.5,
		onLoad: function(){
			$('#cboxClose').hide();
		},
		onComplete: function(){
			$('#cboxClose').show();
		 }
	});
	
	$('#content .product-details .right .colorbox').colorbox({ opacity: 0.5, inline:true});

	//PNG Fix for IE6
	if($.browser.msie && $.browser.version.substr(0,1) == 6){
		DD_belatedPNG.fix('#content .project-fader .fader-navButtons a, #content .project-fader a.caption, #cboxClose');
	}

});

jQuery.noConflict();
  jQuery(document).ready(function($) {

  		$("#gform_wrapper_3").after("<div id='fakeprogress'><h2>Uploading Files.. Please Wait</h2><center>Large files may take longer to upload.</center></div>");
  		$("#fakeprogress").hide();
		$("input#gform_submit_button_3").click(function () {
   			$("#fakeprogress").delay(3000).show('slow');
		});	

  });

