/**
* Styleswitch stylesheet switcher built on jQuery
* Under an Attribution, Share Alike License
* By Kelvin Luck ( http://www.kelvinluck.com/ )
**/
min_height = 770;

    $(document).ready(function() {
        $('#logo').click(function(){
            switchStylestyle();
            return false;
        });
    });

    function switchStylestyle(){
		
    }



function checkHeader(){

	counter=0;
	// alert($(window).height());
	if($(window).height()<min_height){
		on =1;
		off=2;
	}else{
		on = 2;
		off=1;
	}
	// alert(on);
    $('link[@rel*=style]').each(function(i){
		if(counter==on){
			this.disabled = false;
		}
		if(counter==off){
			this.disabled = true;
		}
		counter++;
    });
}