$(document).ready(function() {
	// rollover
	$('.rollover').hover(function(){
    	$(this).attr('src', $(this).attr('src').replace('_1', '_2'));
    }, function(){
    	if (!$(this).hasClass('currentPage')) {
    		$(this).attr('src', $(this).attr('src').replace('_2', '_1'));
    	}
    });
	
    // datePicker
    $('.datePicker').datepicker({minDate: 0});
    $('.datePickerNoLimit').datepicker();
    
    // colorbox
    $('a.inlineView').colorbox();
    
    // smooth scroll
	$("a.smooth").click(function(){
	     $('html, body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
	     return false;
	 });
	
	// focus
	$(".focusForm input[type='text']").focus(function(){
        $(this).addClass('focus');
    });
    $(".focusForm input[type='text']").blur(function(){
        $(this).removeClass('focus');
    });
    $(".focusForm textarea").focus(function(){
        $(this).addClass('focus');
    });
    $(".focusForm textarea").blur(function(){
        $(this).removeClass('focus');
    });
});
