// JavaScript Document
$(function() {
    $('#product_image_large').before('<div id="slideshow_nav" class="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 3000,
        pager:  '#slideshow_nav',
        before: function() { if (window.console) console.log(this.src); }
    });
});


$(function() {
    $('#homepage_large').cycle({
        fx:     'fade', 
    speed:  'slow', 
    timeout: 3000, 
    next:   '#next', 
    prev:   '#prev' 
    });
});



/* Clear form js*/
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
