jQuery(document).ready(function() {

	/* **************************************************** */
	/* the tweet feed										*/
	/* **************************************************** */	
	if(jQuery().tweet) {
	 	jQuery("#feed_list").tweet({        
	        count: 4,			 					
	        username: ["littleliars", "teen", "gurldotcom", "ChannelOneNews", "smosh"],					
	        loading_text: "Please Wait...",
	        refresh_interval: 60,			
			template: "<a class='feed_username' target='_blank' href='{user_url}'>{screen_name}</a>: {text}"  
	      });
	}

	/* **************************************************** */
	/* the menu 											*/
	/* **************************************************** */
	var menu_item = jQuery("#main_menu ul li");		
	menu_item.hover(function(event) {		
		jQuery(this).addClass("hover");		
	}, function(event) {		
		jQuery(this).removeClass("hover");		
	});

	menu_item.click(function(event) {
		menu_item.removeClass("hover");
		event.preventDefault();
		var link = jQuery(this).find("a").clone(),		
			href = link.attr("href"),
			target = link.attr("target");		
		if (target === "_blank") {			
			window.open(href, '_newtab');			
		} else {			
			document.location.href= href;					
		}						
		return false;
	});	

	/* **************************************************** */
	/* contact us link										*/
	/* **************************************************** */	
	jQuery(".link_contact_us").click(function(event) {
		event.preventDefault();
		day = new Date();
	 	URL="http://www.alloymarketing.com/contact/index.html";
		id = day.getTime();
		//eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=418,height=600');");
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=420,height=620');");
		return false;
	});	

});				 
