﻿// JavaScript Document



$(document).ready(function() {

	$(".footerLinks ul li:last-child").css("margin-right", "0");

	$(".topMenu ul li ul li").hover(
	  function () {
		$(this).parent().parent().children("a").addClass("hover");
	  }, 
	  function () {
		$(this).parent().parent().children("a").removeClass("hover");
	  }
	);

	//Toggle more details on wine;

	$(".templateHeader a").toggle(function(){
		$('.templateWrapper').animate({height:720},500);
		$(this).text('Hide Templates');
	},function(){
		$('.templateWrapper').animate({height:230},500);
		$(this).text('View All Templates');
	});
	
	if (window!= top) {
     	top.location.href=location.href
	}



});
