$(document).ready(function(){
		$(".image").hover(function() {
		
			var id = $(this).attr('id');
			id = id.replace("image", '');
			
			$('#green_overlay' + id).slideToggle('fast');
			$('#green_bar' + id).toggle('clip', '', 200);
			
		});
		
		$(".tab_header").click(function() {
		
			var id = $(this).attr('id');
			id = id.replace("tab_header", '');
			
			$('#tab_content' + id).slideToggle(400, function() {
				if ($('#tab_content' + id).css('display') == 'none') {
					$('#slide_icon' + id).attr('src', '/system/application/resources/img/zipline/image-plus.png');
				}
				else {
					$('#slide_icon' + id).attr('src', '/system/application/resources/img/zipline/image-minus.png');
				}
			});
		});
		//Get Shopping Cart Header Length
		
		var shopWidth = $("#shopping_cart").width() + 42 + 2;
		var loginWidth = $("#customer_login").width();
		var containerWidth = $("#header_top_right").width();
		
		var left = containerWidth - shopWidth - loginWidth;
		$("#customer_login").css('margin-left', left + 'px');
	})
