 JQ = jQuery.noConflict();

    jQuery(document).ready(function(JQ) {

   

    //JQ('#container').click(function () {
        //JQ('#productdisplay').children().hide().end().find('#welcomepage').hide();
   // });

    //JQ('#MainContainer').click(function () {
    //    JQ('#productdisplay').children().hide().end().find('#welcomepage').hide();
    //});

    //JQ('#productdisplay').mouseleave(function () {
    //    JQ('#productdisplay').children().hide().end().find('#welcomepage').hide();
    //});

     JQ("#header").dropShadow({left: 2, top: 1, blur: 1, color: "#000", opacity: .5});
     JQ("#topmenu").dropShadow({left: 2, top: 1, blur: 1, color: "#000", opacity: .5});
     JQ(".topddmenu li ul li").dropShadow({left: 2, top: 1, blur: 1, color: "#000", opacity: .5});


    JQ(".productClose").hover(function () {

		JQ(".productClose").addClass('hover');
                }, function () {
			JQ(".productClose").removeClass('hover');
                        
		});

    JQ('.productClose,.productCloseText').click(function () {
      JQ("#productdisplay").children().hide().hide();

      return false;
   });

    //JQ("#productClose").children().removeClass('hover');

    JQ('#UseForm_MyUseForm_Use').change(function () {
        //alert('This is being called on load');
       
        JQ('#UseForm_MyUseForm').submit();

        return true;
    });

    JQ('#OrientationForm_MyOrientationForm_Orientation').change(function () {
        //alert('This is being called on load');

        JQ('#OrientationForm_MyOrientationForm').submit();

        return true;
    });

     JQ('#OutputForm_MyOutputForm_Output').change(function () {
        //alert('This is being called on load');

        JQ('#OutputForm_MyOutputForm').submit();

        return true;
    });

    JQ('#PriceForm_MyPriceForm_Price').change(function () {
        //alert('This is being called on load');

        JQ('#PriceForm_MyPriceForm').submit();

        return true;
    });

    JQ('#CountryFormTop_MyCountryFormTop_Country').change(function () {
        //alert('This is being called on load');

        JQ('#CountryFormTop_MyCountryFormTop').submit();

        return true;
    });

     JQ('#CountryForm_MyCountryForm_Country').change(function () {
        //alert('This is being called on load');

        JQ('#CountryForm_MyCountryForm').submit();

        return true;
    });

    JQ.extend({URLEncode:function(c){var o='';var x=0;c=c.toString();var r=/(^[a-zA-Z0-9_.]*)/;
  while(x<c.length){var m=r.exec(c.substr(x));
    if(m!=null && m.length>1 && m[1]!=''){o+=m[1];x+=m[1].length;
    }else{if(c[x]==' ')o+='+';else{var d=c.charCodeAt(x);var h=d.toString(16);
    o+='%'+(h.length<2?'0':'')+h.toUpperCase();}x++;}}return o;},
URLDecode:function(s){var o=s;var binVal,t;var r=/(%[^%]{2})/;
  while((m=r.exec(o))!=null && m.length>1 && m[1]!=''){b=parseInt(m[1].substr(1),16);
  t=String.fromCharCode(b);o=o.replace(m[1],t);}return o;}
});





});