/* Javscript Document  */

jQuery.noConflict();


jQuery(function() {
  jQuery("input:submit").button();
  jQuery("button").button();
  jQuery("a.button").button();
  jQuery("a.modal-button").button();
  jQuery(".readmore a").button();
  jQuery(".blank a").button();
  jQuery(".lang-block li a").button();
});



jQuery(function() {
  jQuery("#myController").jFlow({
    slideWrapper : "#jFlowSlider",
    controller: ".jFlowControl",
		slides: "#slides",
    width: "855px",
    height: "175px",
    duration: 400
  });
});

var loginPopupStatus = 0;

jQuery(function() {
  jQuery("#login_dropdown").click(function() {
    if (!loginPopupStatus) {
      loginPopupStatus = 1;
      jQuery("#user-login").show();
      jQuery("#modlgn_username").focus();
      return false;
    } else {
      loginPopupStatus = 0;
      jQuery("#user-login").hide();
      return false;
    }
  });
})
