// --------------------------------- Drop Menu

jQuery(document).ready(function() {
jQuery("#dropmenu ul").css({display: "none"}); // Opera Fix
jQuery("#dropmenu li").hover(function(){
		jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(268);
		},function(){
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});
});

// ----------------------------------- Tab Slide-Out

jQuery(function(){
        jQuery('.slide-out-div').tabSlideOut({
            tabHandle: '.handle',                     //class of the element that will become your tab
            pathToTabImage: 'http://beckahshae.com/wp-content/themes/BECKAHSHAE/images/heart.png', //path to the image for the tab //Optionally can be set using css
            imageHeight: '40px',                     //height of tab image           //Optionally can be set using css
            imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
            tabLocation: 'left',                      //side of screen where tab lives, top, right, bottom, or left
            speed: 300,                               //speed of animation
            action: 'click',                          //options: 'click' or 'hover', action to trigger animation
            topPos: '120px',                          //position from the top/ use if tabLocation is left or right
            leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
            fixedPosition: false                      //options: true makes it stick(fixed position) on scroll
        });

    });
    
// vTicker -----------------------------------

jQuery(function(){
	jQuery('#twitter_div').vTicker({
	   speed: 700,
	   pause: 7000,
	   showItems: 1,
	   animation: 'fade',
	   mousePause: true,
	   height: 30,
	   direction: 'up'
	});
});   
    
// Page Flip ---------------------------------
/*
jQuery(document).ready(function(){

	jQuery("#pageflip").hover(function() {
		jQuery("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		jQuery("#pageflip img").stop() 
			.animate({
				width: '62px', 
				height: '66px'
			}, 220);
		jQuery(".msg_block").stop() 
			.animate({
				width: '62px', 
				height: '62px'
			}, 200);
	});

	
});
*/
