$(function(){

    // menu smothness
    $('.menusm li').click(function() {
      window.location = $(this).find('a:first').attr('href');
    });
    var dropdown_level = 0;
    $('.menusm li ul').parent().find('a:first').addClass('have_submenu');
    $('.menusm').children('li').children('a').addClass('top_level');
    $('.menusm').children('li').children('a').removeClass('have_submenu');
    $('.menusm li').hover(function(){
      if(dropdown_level == 0){
        $('.menusm').find('a').removeClass('have_submenu_hover');
        $(this).addClass('li_hover_main');
        $(this).children('a').addClass('a_hover_main');
        $('.menusm ul').parent().find('a:first').addClass('have_submenu');
        $('.menusm').children('li').children('a').addClass('top_level');
        $('.menusm').children('li').children('a').removeClass('have_submenu');
      }
      $(this).find('ul:first').stop(true,true).slideDown(200).show();
      $(this).find('a:first').addClass('have_submenu_hover');
      $('.menusm').children('li').children('a').removeClass('have_submenu_hover');
      dropdown_level++;
    },function(){
      $(this).find('ul:first').stop(true,true).slideUp(0);
      $(this).find('a:first').removeClass('have_submenu_hover');
      dropdown_level--;
      if(dropdown_level == 0){
        $(this).removeClass('li_hover_main');
        $(this).children('a').removeClass('a_hover_main');
       }
    });
	// END of menu smothness
  
});

$(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',theme:'facebook',slideshow:4000, hideflash: true, deeplinking:false,overlay_gallery:false,social_tools:''});
});

$(function() {
	// Slider
	//$('#coin-slider').coinslider({width:960,height:400,opacity:1});
	//$("div#makeMeScrollable").smoothDivScroll({});
	$("div#makeMeScrollable_right").smoothDivScroll({ autoScroll: "always", autoScrollDirection: "backandforth", autoScrollStep: 1, scrollStep: 5 ,autoScrollInterval: 15, startAtElementId: "startAtMe", visibleHotSpots: "always"});
	$("div#makeMeScrollable_left").smoothDivScroll({ autoScroll: "always", autoScrollDirection: "backandforth", autoScrollStep: 1, scrollStep: 5 ,autoScrollInterval: 15, startAtElementId: "startAtMe", visibleHotSpots: "always"});
	
	$("div#makeMeScrollable_right").mouseover(function() {
		$("div#makeMeScrollable_right").smoothDivScroll("stopAutoScroll");
	}).mouseout(function(){
		$("div#makeMeScrollable_right").smoothDivScroll("startAutoScroll");
	});

        $("div#makeMeScrollable_left").mouseover(function() {
		$("div#makeMeScrollable_left").smoothDivScroll("stopAutoScroll");
	}).mouseout(function(){
		$("div#makeMeScrollable_left").smoothDivScroll("startAutoScroll");
	});

	// radius Box
	$('.index-img img, .index-box, .pic img').css({"border-radius":"6px", "-moz-border-radius":"6px", "-webkit-border-radius":"6px"});
	$('.topnav ul li ul, .cs-title').css({"border-bottom-left-radius":"6px", "border-bottom-right-radius":"6px", "-moz-border-radius-bottomleft":"6px", "-moz-border-radius-bottomright":"6px", "-webkit-border-bottom-left-radius":"6px", "-webkit-border-bottom-right-radius":"6px"});
	$('.centercol-bg').css({"border-top-left-radius":"6px", "border-top-right-radius":"6px", "-moz-border-radius-topleft":"6px", "-moz-border-radius-topright":"6px", "-webkit-border-top-left-radius":"6px", "-webkit-border-top-right-radius":"6px"});
	
});

$(function() {
	$('#coin-slider').coinslider({width:734,height:309,opacity:1});
	$('#coin-slider').css({"display":"block"});
});


