// JavaScript Document

/* Perform these functions once the page is finished loading */
$(function() {
	$("#addProductForm").bind("submit", function() {
    if( ( $("#vendorID").attr("value") != "" ) && ( $("#vendorID").attr("value") != undefined ) ) {  
      $(this).submit();
      return false;
    }
    alert ("Your data was not saved because there is no Vendor ID.\n\nPlease add the Vendor ID for this item to continue.")
    return false; 
  } );
	
	/* Make sure the promotional product supplimentary sidenav is always below the main sidenav */
	top = ( parseInt( $("#sideNav").css("top") ) + parseInt( $("#sideNav").height() ) + 50 ) + "px";
	$("#sideNav2").css( "top", top );
	
	
	$("#home-image").html('<div id="home-flash-video" style="padding-top: 10px; padding-left: 13px; padding-bottom: 1em;"><object width="524" height="248"><param name="movie" value="flash/pmd-video.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="flash/pmd-video.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="524" height="248"></embed></object></div>');
});