﻿var ie6 = ($.browser.msie && /MSIE 6\.0/i.test(window.navigator.userAgent) && !/MSIE 7\.0/i.test(window.navigator.userAgent));

// General Styling
$(document).ready(function(){
	$("#subnav ul li:last-child").addClass("last-child");
});

// ie6 fixes
$(document).ready(function(){
	if(ie6){
		$("img[src$='.png']").addClass("png");	
	}
});

$("form input.submit").hover(
  function() {
      $(this).addClass("submit-hover");
  },
  function() {
      $(this).removeClass("submit-hover");
  }
);    
