/* Author: Mark Parsons

*/

$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'fade', // Specify sets like: 'fold,fade,sliceDown'
        slices:25, // For slice animations
        boxCols: 11, // For box animations
        boxRows: 4, // For box animations
        animSpeed:600, // Slide transition speed
        pauseTime:6000, // How long each slide will show
        startSlide:0, // Set starting Slide (0 index)
        directionNav:false, // Next & Prev navigation
        directionNavHide:false, // Only show on hover
        controlNav:true, // 1,2,3... navigation
        controlNavThumbs:false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel:false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        manualAdvance:false, // Force manual transitions
        captionOpacity:1, // Universal caption opacity
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
});

$(".text")
.focus(function() {
	if (this.value === this.defaultValue) {
		this.value = '';
	}
})
.blur(function() {
	if (this.value === '') {
		this.value = this.defaultValue;
	}	
});

$(".text_search")
.focus(function() {
	if (this.value === this.defaultValue) {
		this.value = '';
	}
})
.blur(function() {
	if (this.value === '') {
		this.value = this.defaultValue;
	}	
});

$(".textarea")
.focus(function() {
	if (this.value === this.defaultValue) {
		this.value = '';
	}
})
.blur(function() {
	if (this.value === '') {
		this.value = this.defaultValue;
	}	
});


$('.a_thoughts').click(function() {
  $('.thoughts').slideToggle('slow', function() {
    // Animation complete.
  });
});

$('.comments').click(function() {
  $('.d_product').slideToggle('slow', function() {
    // Animation complete.
  });
});

$('.share').click(function() {
  $('#p_share').slideToggle('slow', function() {
    // Animation complete.
  });
});

$(document).ready(function(){  
	$('.p_image').jqzoom({  
    	zoomType: 'innerzoom',
    	lens:true,  
        preloadImages: true,  
        alwaysOn:false,  
        zoomWidth: 1500,  
        xOffset:6,  
        yOffset:3,  
        position:'left',
        title:false,

    });  
}); 

$(document).ready(function(){
  var options = {
    newsList: "#webticker",
    startDelay: 10,
    placeHolder1: "_",
    controls: false,
    loopDelay: 2000
  }
  $().newsTicker(options);
});




