$(document).ready(function() {
	$(".image_div_1").mouseover(function() {
		$(this).css({'border':'1px solid #f00'});
	});
	$(".image_div_1").mouseout(function() {
		$(this).css({'border':'1px solid #008FCA'});
	});
	

	$(".image_div").mouseover(function() {
		$(this).css({'border':'1px solid #f00'});
	});
	$(".image_div").mouseout(function() {
		$(this).css({'border':'1px solid #008FCA'});
	});
	
	$(".img_text_pos").mouseover(function() {
		$(this).prev().css({'border':'1px solid #f00'});
	});
	$(".img_text_pos").mouseout(function() {
		$(this).prev().css({'border':'1px solid #008FCA'});
	});
    
    $("#peep_prev, #peep_next").css({
        'opacity':0
    });
    
    $("#peep_next").hover(function () {
        $(this).css({
            'background-image':"url('/sites/all/themes/streetpeeper_template/images/arrow_image_right.png')",
            'background-color':'',
            'cursor': 'pointer',
            'opacity': 1
        });
      }, 
      function () {
        $(this).css({
            'background-image':"",
            'background-color':'#fff',
            'cursor':"",
            'opacity': 0
        });
    });
    
    $("#peep_prev").hover(function () {
        $(this).css({
            'background-image':"url('/sites/all/themes/streetpeeper_template/images/arrow_image_left.png')",
            'background-color':'',
            'cursor': 'pointer',
            'opacity': 1
        });
      }, 
      function () {
        $(this).css({
            'background-image':"",
            'background-color':'#fff',
            'cursor':"",
            'opacity': 0
        });
    });
	
});

