// JavaScript Document

  $(document).ready(function() {
        $('.slideshow').cycle({
        fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        });
    });
  
   $(document).ready(function() {
        swapValues = [];
        $(".swap_value").each(
            function(i) {
                swapValues[i] = $(this).val();
                $(this).focus(function() {
                    if ($(this).val() == swapValues[i]) {
                        $(this).val("")
                    }
                }
                ).blur(function() {
                    if ($.trim($(this).val()) == "") {
                        $(this).val(swapValues[i])
                    }
                }
                 )
            }
      )
    }
);
   
   $(function(){
	$("ul#ticker01").liScroll();
	});
  
    $(document).ready(function() {
    $('#ddlLanguage').selectbox();
    

});
