
/**
 * Bootstrap.js - JavaScript bootstrapper
 * 
 * @author Webstores <info at webstores dot nl>
 *         Copyright (c) Webstores internet totaalbureau <http://www.webstores.nl/>
 */
$(document).ready(function() {
	
	// Utilities
	    WS.Util.externalLinks();
	    WS.Util.rowClick();
	    WS.Util.fixPlaceholders();

    // IE6 fixes
    if(/msie 6/i.test(navigator.userAgent)) {
        WS.Util.fixIE6HoverList();
    }
	
	// Carousels
    if($('#spotlight-images').length) {
		$('#spotlight-images').jcarousel({
    		scroll: 1,
		    auto: 6,
		    wrap: 'last',
    		animation: 'slow'
		});
	}
	
	// Validation
    $('form.generated').validate();

});
