$(document).ready(function() {
	
	$("#gocurrency").hide();
	
	// admin .input fields change on focus
	$(".input").focus(function() {
	$(this).addClass("input_focus")
	});
	$(".input").blur(function() {
		$(this).removeClass("input_focus")
	});
	//
	
	// 
	$("table.striped tr").mouseover( function() {
		$(this).addClass('table_over');
	}).mouseout( function() {
		$(this).removeClass('table_over');
	});
	
	
	$(".menu_item").click(function() {
		$(".menu_item").removeClass("menu_item_selected");
		$(this).addClass("menu_item_selected");
		$(".show_images").show();
	});
	
	
	$(".menu_home").click(function() {
		$(".menu_item").removeClass("menu_item_selected");
	});
	
});