
//////////////////////////////////////////////////
// SLIDEING MENU CODE
//////////////////////////////////////////////////

  var name = "#clients_nav";
  var menuYloc = null;
  
    $(document).ready(function(){
      menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
      $(window).scroll(function () { 
        offset = menuYloc+$(document).scrollTop()+"px";
        $(name).animate({top:offset},{duration:800,queue:false});
      });
    }); 
	

//////////////////////////////////////////////////
// SLIDER CODE
//////////////////////////////////////////////////

    $(document).ready(function() {
      $("#sliderImg").SexySlider({
        width     : 842,
        height    : 275,
        delay     : 2000,
        strips    : 15,
        navigation: '#navigation',
        control   : '#control'
      });
    });
	

//////////////////////////////////////////////////
// POP UP WINDOW
//////////////////////////////////////////////////	
			$(document).ready(function(){
				$(".example7").colorbox({width:"400px", height:"300px", iframe:true});
				$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});
				$(".example9").colorbox({
					onOpen:function(){ alert('onOpen: colorbox is about to open'); },
					onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
					onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
					onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
					onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
				});
				
				//Example of preserving a JavaScript event for inline calls.
				$("#click").click(function(){ 
					$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
			});
