$(document).ready(function(){ 
	// dropdown menu
	$("ul.sf-menu").supersubs({ 
		minWidth:    12,   
		maxWidth:    27,  
		extraWidth:  1 
	}).superfish();  
	// dropdown menu
	$("ul.sf-menu-subnav").supersubs({ 
		minWidth:    12,   
		maxWidth:    27,  
		extraWidth:  1 
	}).superfish();  

	//search field 
	$('.text').each(function() {
		var text = this.value;
		$(this).css('color', '#666'); // this could be in the style sheet instead
		$(this).focus(function() {
			if(this.value == text) {
				this.value = '';
				$(this).css('color', '#333');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#666');
				this.value = text;
			}
		});
	});
	$("#twitter_feed").getTwitter({
		userName: "LPP_PR",
		numTweets: 2,
		loaderText: "Loading tweets...",
		slideIn: false,
		slideDuration: 750,
		showHeading: true,
		headingText: "Tweets",
		showProfileLink: false,
		showTimestamp: true
	});
}); 
