/* Author: 
      Dom Ioanna
*/

// Resolve conflict issues w/ other libraries
jQuery.noConflict();

// Window load effects
jQuery(window).load(function() {});
  

// When document loaded, effects
jQuery(document).ready(function() {});


// sliding panel script start
jQuery(document).ready(function() {
	


jQuery(document).ready(function() {
  jQuery('li.nudge').hover(function() { //mouse in
    jQuery(this).animate({ paddingLeft: '10px' }, 400);
  }, function() { //mouse out
    jQuery(this).animate({ paddingLeft: 0 }, 400);
  });
});

// Panel



	jQuery(".btn-slide").click(function(){
	  jQuery("#slide-panel").slideToggle("slow");
	  jQuery(this).toggleClass("active");
	});
	
});







