$(document).ready(function(){
	$('.lc5element img').live('click', function() {
		var url = '/over-multirent/contact/';
		if(strpos($(this).attr('src'), 'offline') == true) 
		{	
			window.location = url;
		}
	});
});

function strpos (haystack, needle, offset) {
    var i = (haystack+'').indexOf(needle, (offset || 0));
    return i === -1 ? false : true;
}

