this.firstnumber = function(){
		$("h2").each(function(i){
			if ($(this).attr("title") == 1){
					$(this).css({fontSize: "14px", position: "relative", top: "-1px", left: "0px", fontWeight: "bold"});
					} else {
					$(this).css({fontSize: "12px", position: "relative", top: "0px", left: "0px", fontWeight: "normal"});
					};
		});
};
this.easyslideselect = function(){
	$("h2").click(function(){
			$("#slider").easySlider({
				prevText: '',
				nextText: '',
				controlsShow:	false,
				controlsFade:	false,
				tin: $(this).attr("title"),
				navselect: true,
				headerin: 'h2'
			});
		});
};
this.easyslide = function(){
	$("#slider").easySlider({
			prevText: '',
			nextText: '',
			tin: 0,
			headerin: 'h2',
			controlsFade:	false
	});
};

this.nav = function(){
	$('.nav').click(function(){
		switch ($(this).attr("title")){
			case "index":
				$('#contentabout').fadeOut('slow');
				$('.contentcontact').fadeOut('slow');
				$('.contentcv').fadeOut('slow');
				$('#content').fadeIn('slow');
				$('#contentlower').fadeIn('slow');
				$('#shownav').fadeIn('slow');
				$('#leftlower').fadeIn('slow');
				break;
			case "about":
				$('#shownav').fadeOut('slow');
				$('#content').fadeOut('slow');
				$('#contentlower').fadeOut('slow');
				$('.contentcontact').fadeOut('slow');
				$('#leftlower').fadeOut('slow');
				$('.contentcv').fadeIn('slow');
				$('#contentabout').fadeIn('slow');
				break;
			case "contact":
				$('#shownav').fadeOut('slow');
				$('#content').fadeOut('slow');
				$('#contentlower').fadeOut('slow');
				$('#contentabout').fadeOut('slow');
				$('.contentcv').fadeOut('slow');
				$('#leftlower').fadeOut('slow');
				$('.contentcontact').fadeIn('slow');
				break;
			
		};
	});
};

this.init = function(){
	easyslide();
	easyslideselect();
	firstnumber();
	nav();
};
$(document).ready(function(){	
	init();	
});