function loadTwitter(){
	var height = 400;
	
	if(jQuery.browser.safari || jQuery.browser.opera) { height = 405; }
	
	new TWTR.Widget({
	  	profile: true,
	  	id: 'twtr-profile-widget',
	  	loop: true,
	  	width: 300,
  		height: height,
	  	theme: {
	    	shell: {
	      		background: '#534948',
	      		color: '#ffffff'
	    	},
	    	tweets: {
	      		background: '#a39c9b',
	      		color: '#ffffff',
	      		links: '#cab65f'
	    	}
		}
	}).render().setProfile('CamillaKerslake').start();
}


