function SetView() {
    var view = $.getUrlVar('view');

    //getting view from cookie, displaying the correct text version



}

/* view change */
function SetToHome() {
    view = 'home';
    	$('.home').show();
    $('.creative').hide();
    $('.promo').hide();
    $('.guerilla').hide();
    $('.clients').hide();
    $('.contact').hide();


}
function SetToCreative() {
    view = 'creative';
    	$('.creative').show();
    $('.home').hide();
    $('.promo').hide();
	$('.guerilla').hide();
    $('.clients').hide();
    $('.contact').hide();

}
function SetToPromo() {
    view = 'promo';
    	$('.promo').show();
    $('.home').hide();
    $('.creative').hide();
    $('.guerilla').hide();
    $('.clients').hide();
    $('.contact').hide();

}

function SetToGuerilla() {
    view = 'guerilla';
	    $('.guerilla').show();
    $('.promo').hide();
    $('.home').hide();
    $('.creative').hide();
    $('.clients').hide();
    $('.contact').hide();

}

function SetToClients() {
    view = 'clients';
	    $('.clients').show();
    $('.promo').hide();
    $('.home').hide();
    $('.creative').hide();
    $('.guerilla').hide();
    $('.contact').hide();

}

function SetToContact() {
    view = 'contact';
	    $('.contact').show();
    $('.promo').hide();
    $('.home').hide();
    $('.creative').hide();
    $('.guerilla').hide();
    $('.clients').hide();

}
