

function hideall() {
	$("#tab").hide();
	$("#tab1").hide();
	$("#tab2").hide();
	$("#tab3").hide();
	$("#tab4").hide();			
}

$(document).ready(function(){
	
	$("#icon1").mouseover(function () {
	hideall();
	$("#tab1").css("display","block");     
	});
	
	$("#icon2").mouseover(function () {
	hideall();
	$("#tab2").css("display","block");     
	});
	
	$("#icon3").mouseover(function () {
	hideall();
	$("#tab3").css("display","block");     
	});  
	
	hideall();
	$("#tab").show();       

});


/*** 
    Simple jQuery Slideshow Script
    Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
***/

function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    // use this to pull the images in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');
		

    // uncomment the 3 lines below to pull the images in random order
    
    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );


    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
		
}

$(function() {
    setInterval( "slideSwitch()", 3500 );
});

var a = new Image(); a.src = 'images/bronzepackage.png';
var b = new Image(); b.src = 'images/bronzepackagerollover.png';

function packageRoll(package) {
	document.images[package].src='images/'+package+'packagerollover.png';
}

function packageRollOut(package) {
	document.images[package].src='images/'+package+'package.png';
}

function Roll(name) {
	document.images[name].src='images/'+name+'rollover.png';
}
function RollOut(name) {
	document.images[name].src='images/'+name+'.png';
}

function Order(name) {
	document.images[name].src='images/orderrollover.png';
}
function OrderOut(name) {
	document.images[name].src='images/order.png';
}

function clearText(field){

    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;

}

jQuery(document).ready(function(){
	jQuery(".site:not(:first)").hide();
	jQuery(".site:first").show();
	jQuery(".portfoliolinks a").click(function(){
		stringref = jQuery(this).attr("href").split('#')[1];
		jQuery('.site:not(#'+stringref+')').hide();
		if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0") {
			jQuery('.site#' + stringref).show();
		} else 
			jQuery('.site#' + stringref).fadeIn();
			return false;
	});
	
	jQuery(".portfolioimg:not(:first)").hide();
	jQuery(".portfolioimg:first").show();
	jQuery(".portfolioblocks a").click(function(){
		stringref = jQuery(this).attr("href").split('#')[1];
		jQuery('.portfolioimg:not(#'+stringref+')').hide();
		if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0") {
			jQuery('.portfolioimg#' + stringref).show();
		} else 
			jQuery('.portfolioimg#' + stringref).fadeIn();
			return false;
	});
});

