$(document).ready(function() {
	// Common
	
	// Scroller
	$jScroller.add("#ticker_container","#ticker","left",7,1);
	$jScroller.start();
	
	// Drop Down Menus
	$("ul.sf-menu li a:last").css("border", "none");
	$("ul.sf-menu").superfish();
	
	// PNG Fix
	$("#snacks").pngFix();
	
	// Snacks
	$(".snack").mouseover(function() {
		jQuery(this).children(".snack_title").children("a").css("color", "#A31C49");
	});
	$(".snack").mouseout(function() {
		jQuery(this).children(".snack_title").children("a").css("color", "#fff");
	});
	
	// Common - End
});