Image not displaying in Slideshow Javascript

Hello there,
I am using the Ultimate Fade-In Slideshow from Dynamic Drive.
It's working well apart from the fact that one of my images is not
displaying at all. It's the image called "laurentbio1.jpg". Can
anyone tell me what I'm doing wrong? I've attached the script code
here:
<script src="SpryAssets/SpryMenuBar.js"
type="text/javascript"></script>
<script type="text/javascript">
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (
http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit
http://www.dynamicdrive.com/
for this script and 100s more.
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["restaurantinterior5.jpg"]
fadeimages[1]=["restaurantinteriorwall.jpg"]
var fadebgcolor="#0A1369"
var fadeimages2=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["restaurantinteriorframed.jpg"]
fadeimages2[1]=["restaurantsign.jpg"]
fadeimages2[2]=["tablefortwo2.jpg"]
fadeimages2[3]=["laurentbio1.jpg"]
var fadebgcolor="#0A1369"
////NO need to edit beyond here/////////////
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding
clearinterval pointers
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
function fadeshow(theimages, fadewidth, fadeheight,
borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();})
//thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
if (iebrowser&&dom||dom) //if IE5+ or modern browsers
(ie: Firefox)
document.write('<div id="master'+this.slideshowid+'"
style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"> <div
id="'+this.canvasbase+'_0"
style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div><div
id="'+this.canvasbase+'_1"
style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img
name="defaultslide'+this.slideshowid+'"
src="'+this.postimages[0].src+'"></div>')
if (iebrowser&&dom||dom) //if IE5+ or modern browsers
such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()",
this.delay)
function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if
IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if
(obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
obj.delay)
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
slideHTML+='<img src="'+this.postimages[picindex].src+'"
border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link
exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache
object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser?
iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
this.canvasbase+"_1" : this.canvasbase+"_0"
else{
var
ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
this.curimageindex=(this.curimageindex<this.postimages.length-1)?
this.curimageindex+1 : 0
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] :
document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] :
document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser?
iebrowser["master"+this.slideshowid] :
document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
this.rotateimage()
</script>
Thank you so much!

So, the problem described in the other forum post does not match the title of this thread. Are you trying to address two different things? These are unrelated btw.
For the issue in the other thread, you'll have to troubleshoot your content distribution to the selected DP. The distmgr.log and pkgxfermgr.log (assuming you chose to distribute the image to a DP directly attached to your primary site) are the places to
start and will show you exactly what's going on.
As for the title of this thread, we'll need a lot more info to help you there.
Finally, I would suggest you copy your questions from other sources into the thread -- this will help other folks in the future that may stumble upon this thread and will prevent any confusion.
Jason | http://blog.configmgrftw.com | @jasonsandys

Similar Messages

  • OBIEE 10G Embedded Image not displayed on PDF

    Hi
    We have some embedded images (source on network share or on the webserver) on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    Is there a known bug that images can't be printed on dashboard pages or do we have to embed them different?
    Thank you

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • OBIEE 11G Embedded Image not displayed on PDF

    Hi
    I have some embedded images on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    All the images are referenced with the fmap path.
    Any way to print the images in the pdf ?
    Thank you
    obiee 11.1.1.5
    O.S : Oracle Linux 5.6 x64

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • JPG images not displayed correctly in Bridge and Photoshop (Mac OS)

    (Note: I have copied the content of this query from the Creative Suites forum where I originally opened it.)
    I am using CS4 under OSX 10.4.11 on a PowerMac G5 Quad with 23" Apple cinema display. Images which have been captured as JPG are displayed fine by Preview, but when opened in Bridge, Camera Raw or Photoshop. the colours are all "washed out". The attached screen capture should give an idea of the difference, with the upper being Camera Raw (image settings) and the lower being Preview. My monitor has been calibrated and I'm using sRGB IEC61966-2.1 colour space in Camera Raw and Photoshop. The colours displayed by Preview are pretty close to "real life". I find it virtually impossible to adjust the colours in Photoshop to get back to anything similar.
    After opening the image in Photoshop without adjustment, and Save As JPEG with embedded color profile, Preview displays the new image the same as Photoshop. Save As JPEG without embedded color profile, and Preview displays this copy just like the original. It seems that Photoshop is making different (incorrect) assumptions about what color space to use when there is no embedded color profile. Shouldn't it assume sRGB like virtually everything else (http://en.wikipedia.org/wiki/SRGB)? Or is its interpretation of sRGB incorrect? How can I fix this?
    Re: JPG images not displayed correctly in Bridge and Photoshop 

    xxxxyyyyz wrote:
    …If there is someone out there who has experience of obtaining decent colour management in CS4 on a Power PC, I would really like to know how you achieved it.
    That would be yours truly, and I hasten to reply because I may have some insights that can help you too.
    Just get it it out of the way, here's my setup:
    Photoshop 11.0.2 ("CS4"); VersionCue disabled and uninstalled.—2.5 GHz Power Mac (PPC) G5-Quad; 16GB RAM; mutant, flashed 550MHz nVidia GeForce 7800GTX 1,700MHz 512MB VRAM; ATTO ExpressPCI UL5D LP SCSI card; Mac OS X Tiger 10.4.11 and Leopard 10.5.8 boot drives; Spotblight, Dashboard and Time Machine permanently disabled; dual 22" CRT monitors; USB wireless 'n' available but connected to the Internet via wired Ethernet; 1 FW flatbed scanner; 2 SCSI scanners (one tabloid-size transparency scanner and a film scanner); various internal & external HDs; FW Epson 2200 and Ethernet Samsung ML-2850ND printers; 2 X Back-UPS RS 1500 XS units.
    I can unambiguously and in good faith represent to you that my color management, from capture to print, is as spot-on as anyone with any kind of setup can hope to achieve.  Unequivocally and without qualifications.
    Now, first things first:  Forget about trying to synchronize color management across the point applications lumped together only by Adobe marketing fiat into a variety of meaningless "creative suites".  Concentrate on Photoshop.  Do not try to use Bridge to synchronize anything.
    The "suites" are a totally artificial construct created by Adobe bean counters and marketing types.  The point applications (i.e. the individual programs clumsily bundled together, e.g. Photoshop, Illustrator, InDesign, etc.) are developed independently by separate engineering teams that are not only not in the same building, but in different cities, different states of the American Union, and even in different countries.  They have very little communication among them, if any, as evidenced by repeated posts in these forums by Photoshop engineering staff urging us, the end users, to let the other teams know in their own forums that a given problem exists and is actually affecting our work.
    Enough said about the cause of the problem.  The end result is that Color Management is at very, very different levels of progress and sophistication in each individual point application, with only Photoshop fully entitled to be considered state of the art.
    Secondly, a disclaimer:  I have been hanging on to my CRT monitors and take care of them as Jascha Heifetz used to take care of his Stradivarius.  I don't know what I will do if I manage to outlive the usefulness and accuracy of my CRTs (unlikely at this point).  I have despaired in futile efforts to bring the luminosity of any LCD monitor down to where I would feel comfortable calibrating and profiling it.  I believe my monitors are the foundation of my color management efforts.
    Especially if you have one of the extreme wide-gamut LCD or LED monitors, you'll face an uphill battle. 
    Be careful to avoid any version 4 icc profiles, whether canned or generated by your calibration software.  Stick to version2 icc profiles.  Ask the manufacturer of your calibration software/hardware if in doubt.
    Here are some not-too-recent, but thoroughly representative screen shots of the calibration results I obtain with my monitors, which I calibrate and profile often and regularly (I validate the calibration at least several times per month).
    In a nutshell, my color management practices and settings mirror those described by Bruce Fraser, Jeff Schewe, Andrew Rodney and Gary Ballard's site.  I have learned from all of them.
    My working color space is ProPhoto RGB.  I choose to work with PSD and PSB files.  As a long-time, rabid JPEG hater, I only rarely deal with JPEGs, using them sporadically to illustrate a point in this forum or elsewhere in the web.  My main output consists of prints.
    I only deal with tagged image files (files with an embedded color profile) and often recommend beating up with a baseball bat any moron that hands you an untagged file—figuratively of course, but I find the expression gets my point across unambiguously.
    Following is a screen shot of some of my pertinent settings:
    Note that I have never bought into the "suite" concept myself.  I do have and routinely use Adobe Illustrator 10.x, InDesign 2.x and Acrobat Professional 8.x, but they are all older, independent versions of each point application, licensed at different times.
    Be further advised, that the answer to many problems offered by Adobe engineers often is not to install VersionCue, or uninstall it, or at least disable it.
    Also, as outlined at the beginning of this post, concentrate on Photoshop, not on synchronizing applications that can't really communicate with each other, despite the claims of Adobe marketing hacks to the contrary.
    One big caveat, do not fall into this trap:
    xxxxyyyyz wrote:
    …I believe my problem has nothing to do with my monitor profile, for several reasons, but…
    …It seems extremely unlikely to me that…
    You either want to learn, or you don't.  You either want to solve your problems, or you don't.
    When you start arguing instead of studying, questioning advice instead of following it and detecting where you went wrong, you're on the right track to nowhere.  That attitude will get you there fast.  Remember you are the one with the problem, and only you can acquire the discipline to learn how to solve it.
    Go ahead and ask me anything that is not clear, just don't argue with me please, and don't tell me why you think Fraser, Rodney, Ballard and I are wrong.  You see, I am not experiencing any problem that needs fixing.  I have an interest in helping you, but not in hearing about your speculations, theories or conclusions.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • CF slows down to a halt ... images not displaying

    My primary laptop on which I do all coding ...
    - less than 1 year old
    - Dell (cough) XPS M1730
    - Windows XP (latest)
    - ColdFusion Ver 8, developer edition.
    - No other issues with laptop
    Also running
    - SQL 2000
    - Synergy
    - Anti virus etc. changed Norton daily scan and unaware that I have picked up any viruses - I was my hands very well and often
    Over 6 months gradually CF has been slowly not display internal referenced <img src> tags.  External work fine.
    To the point now where most in our app do not display.
    Then in the past 3-4 days a lot of pages when called give Firefox or IE errors:
    Page will not display with too may users error.
    But there aren't any others.
    I go to all other web site, no issues with speed.
    I just cold warm booted the machine and now while page 1 appears, page 2, login, takes minutes to appear.  But on a beta server (also developer edition) it's instant.
    When I go straight into the browser, it works fine, albeit no images, crashes with a known bug (missing application variable), fix it, then resume, then just sits there forever.
    And there's no difference between the two machines ... well, not in "that" way.
    Adding to my confusion is ... I cannot get into the CF Admin panel.
    I can see it approve me, then it just spins.
    Nothing has changed on machine in past weeks EXCEPT traveling when I sign in to the usual plethora of wifi and other networks but never had a problem - except luggability
    I am thinking of, UGH, reinstalling Windows ... but why bother if it's working perfectly and only ColdFusion has an issue.
    Now COLD booted machine for 5 minutes.
    Everything seems better except CF still a BIT sluggish and still not "drawing" most images.  Able to access Admin panel.  Even if there images not displaying.
    Anyone any ideas?

    Thanks for your prompt reply ...
    We scoured for a folder like that and found none.
    What we DID find is that over the years of coding, we have a template count of 3,500 files in 130 folders, but the root where we start is about 1,500 files.   144 megs total size though.
    That shouldn't be too much?  Esp as our beta and production servers are using the same amount with no issues.
    Admittedly production is CF 7.X.
    Much more powerful machines but still.
    It would have made sense as that is the only thing on the machine that has "grown" ... but no luck.
    Does remind me of the day when our mail server got hacked and we had 100,000 outbound in the spool.  That was fun.: :)

  • Image not displaying in the Task Sequence Wizard. SCCM2012

    This is my question, so I will post the link here.
    http://community.spiceworks.com/topic/925727-image-not-displaying-in-the-task-sequence-wizard-sccm2012
    Bryan
    I captured an image from a PC that I am preparing to be deployed with Office 365. Once I captured
    the image, I went to the software library to add the operating system image. That seemed to go on without any issue, but when I look at the summary, I see the big yellow globe saying "in progress" it has not changed since yesterday afternoon.
    I then created the task sequence for this image
    to be deployed under Software Library, Task Sequences. When I selected the references tab, everything seemed to be in order with the exception of the "operating system image" under type. It was/is showing 0.0% Compliance.

    So, the problem described in the other forum post does not match the title of this thread. Are you trying to address two different things? These are unrelated btw.
    For the issue in the other thread, you'll have to troubleshoot your content distribution to the selected DP. The distmgr.log and pkgxfermgr.log (assuming you chose to distribute the image to a DP directly attached to your primary site) are the places to
    start and will show you exactly what's going on.
    As for the title of this thread, we'll need a lot more info to help you there.
    Finally, I would suggest you copy your questions from other sources into the thread -- this will help other folks in the future that may stumble upon this thread and will prevent any confusion.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Images not displaying when open in Dreamweaver

    Hi, my images on the page
    oldfortestates.com/about_st.vincent.htm do not display properly
    when open in DW however they do on the server when opened with a
    browser. They are stored in the images folder in the site root. I
    have this problem with all my pages...

    Going back to my original comment, if you change the name
    http://oldfortestates.com/images/table_bck1.JPG
    (File Not Found)
    to
    http://oldfortestates.com/images/table_bck1.jpg
    the image is there.
    > However, how should I ever get all those errors fixed.
    Isn't it easier to
    > just make a new page.
    If it were me, yes, I would start over.
    >Is there a quick way for me to just create an exact copy
    of my pages in a
    >template page where I can after just copy and paste all
    the different page
    >infos into.
    I am far from being the best person to give advice, I would
    steer clear of
    javascript menus for a start - they don't work with
    javascript turned off.
    There are many good ones recommended here,
    www.projectseven.com and others
    Start with a clean page and investigate Server Side Includes
    with a good
    menu (see many recommendations here) or, as you suggest (you
    don't have many
    pages), a template.
    Make sure you save the template File > Save As Template.
    >then rename the individual pages
    No, create child pages from the template, giving them names.
    I wouldn't
    rename anything you already have, the code is... bad.
    Check out your validation errors to make sure you don't
    repeat your
    mistakes.
    You'd be wise to look at
    http://www.w3schools.com/ for
    HTML and CSS.
    As I said, I'm not the best person to help but hope this does
    a bit.
    Jo
    "atomic king" <[email protected]> wrote in
    message
    news:gjoqqr$nk5$[email protected]..
    > Thanks so much Joise1 I will try to see if I can get
    that image to work.
    > However, how should I ever get all those errors fixed.
    Isn't it easier to
    > just
    > make a new page. Is there a quick way for me to just
    create an exact copy
    > of my
    > pages in a template page where I can after just copy and
    paste all the
    > different page infos into and then rename the individual
    pages. What do
    > you
    > think?
    >

  • Dreamweaver images not displaying

    Hi,
    I have a site that is not displaying images. I have a blank box in the middle of the page that is supposed to display three images every few seconds. I have looked at the code and cannot see that issue.
    Here is the html fro the index.html
    I have highlighted the parts where i think is the problem
    I hope someone can help.
    The site is www.luxeit.com.au
    <!DOCTYPE html><!--[if IE 6]><html id="ie6" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if IE 7]><html id="ie7" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if IE 8]><html id="ie8" dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><![endif]--><!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!--><html dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:addthis="http://www.addthis.com/help/api-spec" ><!--<![endif]-->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-42925477-1', 'luxeit.com.au');
      ga('send', 'pageview');
    </script>
    <head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width" /><title>IT Network Support Ocean Grove, Barwon Heads, IT Support Ocean Grove</title><meta name="geo.region" content="AU-VIC" /><meta name="geo.placename" content="Melbourne" /><meta name="geo.position" content="-38.097535;145.170699" /><meta name="ICBM" content="-38.097535, 145.170699" /><meta name="GOOGLEBOT" CONTENT="index, follow"><meta name="language" content="English"><meta name="Robots" CONTENT="index, follow"><meta name="revisit-after" content="1 days"><meta name="Search Engine" CONTENT="http://www.google.com.au/"> <meta name="DC.title" content="IT Support Ocean Grove, Computer Support Ocean Grove, Small Business Server, Sonicwall Firewall" /><link rel="profile" href="http://gmpg.org/xfn/11" /><link rel="stylesheet" type="text/css" media="all" href="wp-content/themes/itmadic/style.css" /><link rel="pingback" href="xmlrpc.php" /><!--[if lt IE 9]><script src="http://www.luxeit.com.au/wp-content/themes/itmadic/js/html5.js" type="text/javascript"></script><![endif]--><link rel="alternate" type="application/rss+xml" title="It medic &raquo; Feed" href="feed/index.html" />
    <link rel="alternate" type="application/rss+xml" title="It medic &raquo; Comments Feed" href="comments/feed/index.html" />
    <link rel='stylesheet' id='output-css'  href='wp-content/plugins/addthis/css/outputccfb.css?ver=3.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='wp-paginate-css'  href='wp-content/plugins/wp-paginate/wp-paginate9030.css?ver=1.2.4' type='text/css' media='screen' />
    <script type='text/javascript' src='wp-includes/js/comment-replyccfb.js?ver=3.4.2'></script>
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
    <link rel='prev' title='contact' href='contact/index.html' />
    <link rel='next' title='Request A Quote' href='request-a-quote/index.html' />
    <meta name="generator" content="WordPress 3.4.2" />
        <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
    <!-- All in One SEO Pack 2.0.2 by Michael Torbert of Semper Fi Web Design[775,782] -->
    <meta name="description" content="Call (03) 5255 4214 for quick and best IT support?  We provide versatile IT network support and solutions for enabling your business to achieve goals quickly and cost effectively." />
    <meta name="keywords" content="IT support Ocean Grove, IT network support, support Barwon Heads, Geelong IT support" />
    <link rel="canonical" href="index.html" />
    <!-- /all in one seo pack -->
    <link href="wp-content/themes/itmadic/style.css" rel="stylesheet" type="text/css" /><link href="wp-content/themes/itmadic/css/banner_slider/style.css" rel="stylesheet" type="text/css" /><link href="wp-content/themes/itmadic/css/jquery.megamenu.css" rel="stylesheet" type="text/css" /><script src="../ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script><script type="text/javascript" src="../ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script><link rel="stylesheet" href="wp-content/themes/itmadic/colorbox/colorbox.css" /><script src="wp-content/themes/itmadic/colorbox/jquery.colorbox-min.js"></script><script type="text/javascript">    $(document).ready(function(){        $("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);                    $(".btn_book").colorbox({transition:"fade",width:400});                    $(".btn_request").colorbox({transition:"fade",width:400});    });</script><script src="wp-content/themes/itmadic/js/jquery.megamenu.js"></script><script type="text/javascript">  jQuery(function(){          var SelfLocation = window.location.href.split('?');            switch (SelfLocation[1]) {                case "defined_width":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        width: "850px"                    });                    break;                case "auto_width_right":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        justify: "right"                    });                    $('.MegaMenu').css("text-align", "right");                    break;                case "defined_width_right":                    $(".MegaMenuLink").megamenu(".MegaMenuContent", {                        justify: "right",                        width: "850px"                    });                    $('.MegaMenu').css("text-align", "right");                    break;                default:                    $(".MegaMenuLink").megamenu(".MegaMenuContent");                    break;            }      });</script><script type="text/javascript">      //Plugin start (function($)   {     var methods =       {         init : function( options )         {           return this.each(function()             {               var _this=$(this);                   _this.data('marquee',options);               var _li=$('>li',_this);                                      _this.wrap('<div class="slide_container"></div>')                        .height(_this.height())                       .hover(function(){if($(this).data('marquee').stop){$(this).stop(true,false);}},                               function(){if($(this).data('marquee').stop){$(this).marquee('slide');}})                         .parent()                        .css({position:'relative',overflow:'hidden','height':$('>li',_this).height()})                         .find('>ul')                        .css({width:screen.width*2,position:'absolute'});                              for(var i=0;i<Math.ceil((screen.width*3)/_this.width());++i)                   {                     _this.append(_li.clone());                   }                            _this.marquee('slide');});         },               slide:function()         {           var $this=this;           $this.animate({'left':$('>li',$this).width()*-1},                         $this.data('marquee').duration,                         'swing',                         function()                         {                           $this.css('left',0).append($('>li:first',$this));                           $this.delay($this.data('marquee').delay).marquee('slide');                                       }                        );                                      }       };        $.fn.marquee = function(m)     {       var settings={                     'delay':2000,                     'duration':900,                     'stop':true                    };              if(typeof m === 'object' || ! m)       {         if(m){         $.extend( settings, m );       }          return methods.init.apply( this, [settings] );       }       else       {         return methods[m].apply( this);       }     };   } )( jQuery );  //Plugin end  //call $(document).ready(function(){     $('.slide_new').marquee({delay:3000});       //$("li.page_item:last").addClass("last");   });   var chk_sec = 'invalid'var chk_sm_captcha = null;function chk_contactForm(){    if(document.getElementById('Name').value == 'Enter Name *'){        alert("Please enter name.");        document.getElementById('Name').focus();        return false;    }        if(document.getElementById('Email').value == 'Enter Email *'){        alert("Please enter email.");        document.getElementById('Email').focus();        return false;    }    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;    var address = document.getElementById('Email').value;    if(reg.test(address) == false) {                 alert('Please enter valid email.');        document.getElementById('Email').focus();        return false;    }        if(document.getElementById('Phone').value == 'Enter Contact *' || isNaN(document.getElementById('Phone').value) == true){        alert("Please enter contact no.");        document.getElementById('Phone').focus();        return false;    }    if(document.getElementById('sec_code').value == 'Enter Code *'){        alert("Please enter code.");        document.getElementById('sec_code').focus();        return false;    }                    $s = jQuery.noConflict();        $s.ajax({        type:'POST',        url: "http://www.luxeit.com.au" + "/ajax",        data:$s('#requestfrm').serialize(),        dataType:"json",        success: function(response) {          if(response.error == "No")          {            alert("Please enter code same as image.");            return false;         }else if (response.error == "Yes"){                    alert("Thank you for using our services.");                                                requestfrm.reset();                                }        }        , error:function(response){alert(response);}    });return false;}function ContactUs(){    if(document.getElementById('author').value == 'Enter Name *'){        alert("Please enter name.");        document.getElementById('author').focus();        return false;    }        if(document.getElementById('email').value == 'Enter Email *'){        alert("Please enter email.");        document.getElementById('email').focus();        return false;    }    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;    var address = document.getElementById('email').value;    if(reg.test(address) == false) {                 alert('Please enter valid email.');        document.getElementById('email').focus();        return false;    }        if(document.getElementById('subject').value == 'Enter Subject *'){        alert("Please enter subject.");        document.getElementById('subject').focus();        return false;    }    if(document.getElementById('text').value == 'Enter Message *'){        alert("Please enter message.");        document.getElementById('text').focus();        return false;    }            if(document.getElementById('sec_code').value == 'Enter Code *'){        alert("Please enter code.");        document.getElementById('sec_code').focus();        return false;    }        $s = jQuery.noConflict();        $s.ajax({        type:'POST',        url: "http://www.luxeit.com.au" + "/ajax-2",        data:$s('#ContactUs').serialize(),        dataType:"json",        success: function(response) {          if(response.error == "No")          {            alert("Please enter code same as image.");            return false         }else if (response.error == "Yes"){                    alert("Thank you for using our services.");                    ContactUs.reset();                                }        }        , error:function(response){alert(response);}    });return false;}</script></head><body class="home page page-id-145 page-template page-template-home-php single-author singular two-column right-sidebar"><div id="wrapper">  <div id="mainpage">            <!-- Header -->    <div id="header">      <div class="topelement">        <div class="phone"><img src="wp-content/themes/itmadic/images/phone.png"  alt="Phone" /></div>        <br class="clear" />        <div class="email"><a href="mailto:[email protected]">[email protected]</a></div>      </div>        <div class="logo" title="IT Support Ocean Grove"><a href="index.html"><img src="wp-content/themes/itmadic/images/logo.png" alt="IT support Melbourne" /></a></div>    </div>    <!-- Header End -->    <!-- Menu -->        <div id="nav">      <ul class="MegaMenu">      <li> <a href="index.html" class="MegaMenuLinkOff active" title="IT support Ocean Grove"><span class="active">Home</span></a></li>       <li><a href="about-us/index.html" class="MegaMenuLink " title="IT Support"><span class="">ABOUT US</span></a><div class="MegaMenuContent">        <table class="MegaMenuTable" style="z-index:99999999 !important;">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="clients/index.html" title="Clients">Clients</a></li>                  <li><a href="it-medic-career-opportunities/index.html" title="Employment">Employment</a></li>                  <li><a href="contact/index.html" title="Contact Us">Contact Us</a></li>                                  </ul></td>               </tr>          </tbody>        </table>      </div> </li>             <li> <a href="it-support/index.html" class="MegaMenuLink " title="Business IT Support"><span class="">IT SUPPORT </span></a><div class="MegaMenuContent">        <table class="MegaMenuTable" style="z-index:99999999 !important;">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="category/faqs/index.html" title="Clients">FAQs</a></li>                                                   </ul></td>               </tr>          </tbody>        </table>      </div></li>     <li> <a href="services/index.html" class="MegaMenuLink " title="Business IT Support Services"><span class="">SERVICES</span></a> <div class="MegaMenuContent">        <table class="MegaMenuTable">          <tbody>            <tr>              <td>              <ul class="MegaMenuLists">                  <li><a href="fixed-price-it-support/index.html" title="Fixed Price IT Support">Fixed Price IT Support</a></li>                  <li><a href="managed-services/index.html" title="Managed IT Services">Managed IT Services</a></li>                  <li><a href="it-medic-cloud-backup-online-managed-backup-service/index.html" title="Cloud Backup">Cloud Backup</a></li>                  <li><a href="services/index.html" title="Cloud Computing">Cloud Computing</a></li>                    <li><a href="it-medic-business-it-advice/index.html" title="IT Strategy and Advice">IT Strategy and Advice</a></li>        <li><a href="office_365_microsoft_online_experts/index.html" title="Office 365 - Microsoft Online Solutions">Office 365 - Microsoft Online Solutions</a></li>        <li><a href="it-office-moves-we-will-organise-your-office-move/index.html" title="Office Moves and Relocations">Office Moves and Relocations</a></li>        <li><a href="small-business-server-sbs/index.html" title="Small Business Server">Small Business Server Specialists</a></li>                  <li><a href="it-medic-website-hosting/index.html" class="no_border" title="Cloud Hosting">Web Hosting</a></li>                </ul></td>               </tr><script type="text/javascript">  var _gaq = _gaq || [];  _gaq.push(['_setAccount', 'UA-42925477-1']);  _gaq.push(['_trackPageview']);  (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })();</script>          </tbody>        </table>      </div></li>     <li> <a href="solutions/index.html" class="MegaMenuLinkOff " title="IT Support Solutions"><span class=""> SOLUTIONS </span></a></li>     <li> <a href="contact/index.html" class="MegaMenuLinkOff " title="Contact Us"><span class="">CONTACT</span></a></li>    <li class="noBg">  <a href="category/blog/index.html" class="MegaMenuLinkOff " title="IT BLOG"><span class="">IT BLOG</span></a></li>      </ul>    </div>        <!--<div id="nav">      <div class="main-menu">          <ul>                 <div class="menu-top-menu-container"><ul id="menu-top-menu" class="menu"><li id="menu-item-157" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-145 current_page_item menu-item-157"><a title="IT support Melbourne" href="http://www.luxeit.com.au/"class="select"><span>Home</span></a></li>
    <li id="menu-item-152" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-152"><a title="IT Support" href="http://www.luxeit.com.au/about-us/"><span>About Us</span></a></li>
    <li id="menu-item-151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-151"><a title="Business IT Support" href="http://www.luxeit.com.au/it-support/"><span>It support</span></a></li>
    <li id="menu-item-150" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-150"><a title="Business IT Support Services" href="http://www.luxeit.com.au/services/"><span>services</span></a></li>
    <li id="menu-item-149" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-149"><a title="IT Support Solutions" href="http://www.luxeit.com.au/solutions/"><span>solutions</span></a></li>
    <li id="menu-item-148" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-148"><a title="Contact Us" href="http://www.luxeit.com.au/contact/"><span>contact</span></a></li>
    </ul></div>              <li class="last"><a href="http://www.luxeit.com.au/category/blog/" ><span>IT BLOG</span></a></li>              </ul>      </div>    </div>-->    <!-- Menu End -->    <!-- Banner -->        <div id="banner_container">      <div id="featured">                  <ul class="ui-tabs-nav">            <li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"> <a href="#fragment-1"> <img class="alignnone size-full wp-image-37" title="comp_support" src="wp-content/uploads/2012/12/comp_support1.png" alt="" width="68" height="68" /><span class="li_title">Cloud<br/>Backup</span></a></li><li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-2"> <a href="#fragment-2"> <img class="alignnone size-full wp-image-37" title="comp_support" src="wp-content/uploads/2012/12/comp_support1.png" alt="" width="68" height="68" /><span class="li_title">Fixed Price <br/>IT & Support</span></a></li><li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-3"> <a href="#fragment-3"> <img class="alignnone size-full wp-image-41" title="hardware" src="wp-content/uploads/2012/12/hardware1.png" alt="" width="68" height="68" /><span class="li_title">hardware<br/>sales</span></a></li>        </ul>        <div id="fragment-1" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="it-medic-cloud-backup-online-managed-backup-service/index.html"><img class="alignnone size-full wp-image-38" title="Small Business Server" src="wp-content/uploads/2012/12/image21.jpg" alt="Small Business Server" width="715" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/comp_support1.png"></a><a href="small-business-server-sbs/index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    Outsource your IT to one reliable place          </div>        </div><div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="it-support/index.html"><img class="alignnone size-full wp-image-38" title="It Support Melbourne" src="wp-content/uploads/2012/12/image21.jpg" alt="It Support Ocean Grove" width="715" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/comp_support1.png"></a><a href="index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    Outsource your IT to one reliable place          </div>        </div><div id="fragment-3" class="ui-tabs-panel ui-tabs-hide" style=""> <a href="#"><img class="alignnone size-full wp-image-42" title="Computer Support Ocen Grove" src="wp-content/uploads/2012/12/image31.jpg" alt="Computer Support Ocean Grove" width="716" height="278" /></a>          <div class="info">            <a href="wp-content/uploads/2012/12/hardware1.png"></a><a href="it-support/index.html"></a>
    <h2>Too many people trying to do the right job ?</h2>
    <p>Outsource your IT to one reliable place</p>
              </div>        </div>      </div>    </div>    <!-- Banner End -->
        <!-- Content Part -->
        <div id="main_container">
          <div class="curve_top"></div>
          <div class="curve_middle">
            <!--  Left Part Start  -->
            <div id="left_col">
              <div class="content_top"></div>
              <!--  Boxes Start  -->
              <div class="box1">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Cloud Backup</h2>
                  <img src="wp-content/uploads/2013/02/img3.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box1">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Small Business Server</h2>
                  <img src="wp-content/uploads/2012/12/img11.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box2">
                  <h2 class="homebox"><img src="wp-content/themes/itmadic/images/bul.png" alt="IT Supports" />Sonicwall Firewall</h2>
                  <img src="wp-content/uploads/2012/12/img21.png" width="213" height="155"  class="size-full wp-image-71 alignleft" /></div><div class="box-list">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon1.png" alt="" /></div>
                        <a href="javascript:void(0);">Run Maleware Scans</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon2.png" alt="" /></div>
                        <a href="javascript:void(0);">Run Spyware Scans </a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon3.png" alt="" /></div>
                        <a href="javascript:void(0);">Lock the computer down</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/list-icon4.png" alt="" /></div>
                        <a href="javascript:void(0);">Rollout new versions</a></li>
                    </ul><a href="services-2/index.html" class="btn-readmore-small"></a></div><div class="box-list" style="padding-left:35px;">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/email_sync1.jpg" width="28" height="27" alt="" /></div>
                        <a href="javascript:void(0);">Email Synchronisation</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/email_web_access2.jpg" width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Email Web Access </a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/outlook_anywhere2.jpg" width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Outlook Anywhere</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/remote_web_workplace1.jpg"  width="28" height="27"  alt="" /></div>
                        <a href="javascript:void(0);">Remote Web Workplace</a></li>
                    </ul><a href="small-business-server-sbs/index.html" class="btn-readmore-small"></a></div><div class="box-list" style="padding-left:35px;">
                    <ul>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/business1.jpg" alt="" width="28" height="27"  /></div>
                        <a href="javascript:void(0);">Small-Medium Businesses</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/wan1.jpg" alt="" width="28" height="27"  /></div>
                        <a href="javascript:void(0);">Multiple WAN connections</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/fast_utm_1.jpg" alt="" width="28" height="27" /></div>
                        <a href="javascript:void(0);">Fast UTM throughput</a></li>
                      <li>
                        <div class="icon-img"><img src="wp-content/themes/itmadic/images/bandwidth2.jpg" alt="" width="28" height="27" /></div>
                        <a href="javascript:void(0);">Bandwidth managment</a></li>
                    </ul><a href="sonicwall-firewall/index.html" class="btn-readmore-small"></a></div>          <!--  Content Box Start  -->
    <!--          <div class="content-box" style="background: none;">
                  Who We Are Start 
                <div class="who-we">
                                  <h1>who we are ?</h1>
                  <p>LUXE IT&#8217;s objective is to enable your business to reach its goals quickly and cost-effectively using our versatile support services that range from managing your IT systems, offering help-desk services and developing strategic solutions for your individual needs.</p>
    <p>Our service strategy is &#8216;prevention is cheaper than cure&#8217; and as such our goal is to proactively keep your               <a href="who-we-are/">more &gt&gt</a>
                </div>
                  Who We Are End 
                  What Our Start 
                <div class="what-box">
                  <h1>NEWS FLASH</h1>
                  <div class="what-box1">
                      <p class="black-txt">"IT Medic is one of Victoria's leading IT consultancy companies, offering small and medium businesse...</p><a href="http://www.luxeit.com.au/new1">more &gt&gt</a><div style=" border-bottom: 1px dashed #999; margin:10px 0px 20px 0px"></div><p class="black-txt">LUXE IT technicians have steadfastly developed a reputation for delivering quality IT solutions for...</p><a href="http://www.luxeit.com.au/new2">more &gt&gt</a><div style=" border-bottom: 1px dashed #999; margin:10px 0px 20px 0px"></div>                  <div style="float:right;"><a href="http://www.luxeit.com.au/category/news/">View All</a></div>
                  </div>
                </div>
                  What Our End 
              </div>-->
              <!--  Content Box End  -->
            </div>
            <!--  Left Part End  -->
           <div id="right_col">
        <div class="right_box">
            <div class="block-freequote">
                            <form action="#" method="post" id="requestfrm">
                <div class="block-quote-top"> <span class="block-quote-ttle">REQUEST A CALLBACK</span> <br />
                    <div class="contact_text_1">
                        <input name="Name" id="Name" maxlength="25" type="text" onfocus="if (this.value=='Enter Name *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Name *'" class="textbox wdth190" value="Enter Name *"/>
                    </div>
                    <div class="contact_text_1">
                        <input name="Email" id="Email" maxlength="25" type="text" onfocus="if (this.value=='Enter Email *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Email *'" class="textbox wdth190" value="Enter Email *"/>
                    </div>
                    <div class="contact_text_1">
                        <input name="Phone" id="Phone" maxlength="25" type="text" onfocus="if (this.value=='Enter Contact No *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Contact No *'" class="textbox wdth190" value="Enter Contact No *"/>
                    </div>
                    <div class="contact_text_4">
                        <textarea name="comment" id="comment" cols="" rows="3" class="textarea wdth190" onfocus="if (this.value=='Enter Your Comment') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Your Comment'" style="min-height: 60px; outline: medium none; overflow: auto; resize: none; width: 209px;">Enter Your Comment</textarea>
                    </div>
                    <div class="capcha">
                        <img src="wp-content/themes/itmadic/captcha.jpg" width="87" height="30" alt="Captcha" id="Captcha" name="Captcha"/>
                        <img src="wp-content/themes/itmadic/images/refresh.png" width="30" height="30" alt="Capcha" onclick="document.getElementById('Captcha').src='wp-content/themes/itmadic/captchad41d.jp g?'+Math.random();" style="cursor: pointer;" />
                    </div>
                    <div class="contact_text_3">
                        <input name="sec_code" id="sec_code" type="text" onfocus="if (this.value=='Enter Code *') this.value = ''" onblur="if (this.value=='') this.value = 'Enter Code *'" value="Enter Code *" class="textbox wdth100" maxlength="4" size="1"/>
                    </div>
                    <input name="Submit" type="button" class="btn-submit" onclick="return chk_contactForm()"/>
                </div>
                </form>
                <div class="block-quote-btm"></div>
                        </div>
        </div>
        <div style="padding: 5px;float: left;"></div>
    <!--    <div class="right_box"><a href="http://www.luxeit.com.au/special-deals/" class="btn_livechat" oncontextmenu="return false;"></a></div>
        <div class="right_box"><a href="http://www.luxeit.com.au/book-a-service-call/" class="btn_book" oncontextmenu="return false;"></a></div>
        <div class="right_box"><a href="http://www.luxeit.com.au/request-a-quote/" class="btn_request" oncontextmenu="return false;"></a></div>-->
    </div>      </div>
    <!--      <div class="curve_bottom"></div>-->
        </div>
        <!-- Content Part End -->
        <!-- Logo Slider Start -->
        <!-- Logo Slider End -->
      </div>
    <!--  <div class="clear"></div>-->
    </div>
    </div>
          <div class="curve_bottom"></div>
        </div>
        <!-- Content Part End -->
        <!-- Logo Slider Start -->
        <!-- Logo Slider End -->
      </div>
      <div class="clear"></div>
    </div>
        <!--  Footer Start  -->
    <div id="footer">
      <div class="footer_container">
        <div class="mid_body_box_bottom">
          <div class="marquee" id="mycrawler1" style="width: 990px;">
          <!--<img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-1.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-2.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-3.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-4.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-5.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-6.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-7.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-8.jpg" alt="" /> <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/logo-9.jpg" alt="" /> -->
          <a href="wp-content/uploads/2012/12/logo-11.jpg"><img src="wp-content/uploads/2012/12/logo-11.jpg" alt="" title="logo-1" width="142" height="49" class="alignnone size-full wp-image-592" /></a><a href="wp-content/uploads/2012/12/logo-31.jpg"><img src="wp-content/uploads/2012/12/logo-31.jpg" alt="" title="logo-3" width="82" height="39" class="alignnone size-full wp-image-593" /></a><a href="wp-content/uploads/2012/12/logo-41.jpg"><img src="wp-content/uploads/2012/12/logo-41.jpg" alt="" title="logo-4" width="51" height="48" class="alignnone size-full wp-image-594" /></a><a href="wp-content/uploads/2012/12/logo-51.jpg"><img src="wp-content/uploads/2012/12/logo-51.jpg" alt="" title="logo-5" width="74" height="59" class="alignnone size-full wp-image-595" /></a><a href="wp-content/uploads/2012/12/logo-61.jpg"><img src="wp-content/uploads/2012/12/logo-61.jpg" alt="" title="logo-6" width="82" height="56" class="alignnone size-full wp-image-596" /></a><a href="wp-content/uploads/2012/12/logo-71.jpg"><img src="wp-content/uploads/2012/12/logo-71.jpg" alt="" title="logo-7" width="60" height="56" class="alignnone size-full wp-image-597" /></a><a href="wp-content/uploads/2012/12/logo-81.jpg"><img src="wp-content/uploads/2012/12/logo-81.jpg" alt="" title="logo-8" width="132" height="45" class="alignnone size-full wp-image-598" /></a><a href="wp-content/uploads/2012/12/logo-91.jpg"><img src="wp-content/uploads/2012/12/logo-91.jpg" alt="" title="logo-9" width="97" height="47" class="alignnone size-full wp-image-599" /></a>      </div>
        </div>
        <div class="cleaner"></div>
    <!--    <img src="http://www.luxeit.com.au/wp-content/themes/itmadic/images/div-2.png"  style="padding: 0 0 0 40px" />-->
        <!--  Navigation Start  -->
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Quick Links</h3>
          <ul class="navi-menu">
            <li><a href="about-us/index.html" title="About us">About us</a></li>
            <li><a href="it-support/index.html" title="IT Support">IT Support</a></li>
            <li><a href="services/index.html" title="Services">Services</a></li>
            <li><a href="solutions/index.html" title="Solutions">Solutions</a></li>
          </ul>
        </div>
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Our Company</h3>
          <ul class="navi-menu">
            <li><a href="clients/index.html" title="Clients">Clients</a></li>
            <li><a href="it-medic-career-opportunities/index.html" title="Employment">Employment</a></li>
            <li><a href="contact/index.html" title="Contact Us">Contact Us</a></li>
            <li><a href="category/faqs/index.html" title="FAQs">FAQs</a></li>
          </ul>
        </div>
        <div class="navigaiton">
          <div class="cleaner"></div>
          <h3>Our Services</h3>
          <ul class="navi-menu">
            <li><a href="managed-services/index.html" title="Managed IT Services">Managed IT Services</a></li>
            <li><a href="it-medic-cloud-backup-online-managed-backup-service/index.html" title="Cloud Backup">Cloud Backup</a></li>
            <li><a href="services/index.html" title="Cloud Computing">Cloud Computing</a></li>
            <li><a href="it-medic-business-it-advice/index.html">IT Strategy and Advice</a></li>
          </ul>
        </div>
        <!--  Navigation End  -->
        <!--  Contact Information Start  -->
        <!--  Contact Information End  -->
        <!--  Social Start  -->
        <div class="social">
          <h3>Social Media</h3>
          <ul class="social-link">
            <li><a href="#" class="facebook"></a>Join Us on Facebook</li>
            <div class="cleaner"></div>
            <br />
            <li><a href="#" class="twitter"></a>Follow Us on Twitter</li>
          </ul>
        </div>
        <!--  Social End  -->
        <!--  Footer Bottom Start  -->
        <div class="footer-bottom">
          <div class="copyright">© copyright 2013 LUXE IT Solutions </div>
          <div class="webdesign"><a href="http://www.luxeit.com.au/" target="_blank">Web Design</a> | <a href="http://http://www.luxeit.com.au" target="_blank" title="Web Design Melbourne">Web Design Ocean Grove</a> <a href="http://http://www.luxeit.com.au/" target="_blank"></a></div>
        </div>
        <!--  Footer Bottom End  -->
      </div>
    </div>
            <!--  Footer End  -->
    <script type="text/javascript">
    var addthis_config = {"data_track_clickback":false,"data_track_addressbar":false,"data_track_textcopy":false," ui_atversion":"300"};
    var addthis_product = 'wpp-3.0.5';
    </script><script type="text/javascript" src="../s7.addthis.com/js/300/addthis_widget.js#pubid=9a150961060f210039a7601a57828761">< /script><!--wp_footer-->
    </body>
    </html>

    Run your page through the validator here: http://validator.w3.org
    You have some structural defects in your code that should be taken care of. If it's still not working once you have the code cleaned, post back and we can take a closer look.

  • Podcast feed images not displaying in Podcast app

    Several of the podcasts I subscribe to are not displaying the feed image in the Podcast app on my iphone.  These are podcasts that I get from Itunes and I can subscribe, download, and play them fine.  They have an image in itunes but for some reason, they do not display in the app.
    An example is 60 Minutes - Full Audio and HandgunWorld Podcast.
    Has anyone else had this issue?  I would appreciate any advice.  Right now I just have gray boxe tiles with the name of the Podcast.  These are podcasts I subscribe to from my iphone.
    Thanks,
    Rick

    Ok finally figured it out.  Nothing to do with images at all. The imagePath was set in the app, but even though the default that was set to was the correct path it was being overridden by a flashvar.  And each of the 3 loaders in the wrapper were setting it differently.  The one for when you didn't have the right flash version wasn't setting it at all.  The one for when you had the right flash version was setting it correctly, and the noscript version was setting it incorrectly.
    It was the noscript version that was running for safari even though javascript was enabled.

  • ReCAPTCHA images not displayed

    The CAPTCHA images and other reCAPTCHA content (prompt, help, etc.) are not displayed on our web forms *for some users*, which prevents them from using the forms. I have not been able to reproduce this myself, but I have screenshots from other users. Could it be some setting that doesn't allow mixed content, i.e. content from remote sites? If so, where do I find this setting in Firefox? I have already determined that it's not due to disabling JavaScript. The troubleshooting information below may not help much because it works for me, just not for some other users.

    Thanks for the reply, cor-el, but I think we're not on the right track here. It's not just the image that isn't being displayed, it's the entire reCAPTCHA content, including text, that is provided by this code:
    <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LckSwAAAAAAABPzoTpsotAoO7HTyQlbAiW90VqT"></script>
    <noscript>
    <iframe src="http://api.recaptcha.net/noscript?k=6LckSwAAAAAAABPzoTpsotAoO7HTyQlbAiW90VqT" height="300" width="500" frameborder="0"></iframe><br>
    <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
    <input type="hidden" name="recaptcha_response_field" value="manual_challenge">
    </noscript>
    I checked all the tips in your links, but I'm having a hard time trying them since it works for me. One user sent me screenshots of Firefox and IE where it doesn't work, so it doesn't seem to be a setting specific to a browser. For this reason and because of the number of people reporting the problem I tend to think it's not due to tweaking settings, ad blockers, etc., although I could be wrong.
    I'm going to check these links now:
    http://kb.mozillazine.org/Error_loading_websites
    http://kb.mozillazine.org/Websites_look_wrong

  • Images not displaying at their normal size, and not all keywords displaying, why?

    Not sure what's going on inside Adobe Bridge CC 2014.1, but why is it that my images are not displaying at full size. Bridge says they're displaying at 100% but I know that's not the case, because when I open the same images in Mac OS Preview (OS 10.10.1 Yosemite) at 100% they're much bigger. Is there a viewing preference setting I'm missing?
    Also, I use Bridge and Photoshop on two mac pro desktops: one at my office and one at home.
    At work, I created more than 30 keywords in Bridge for several hundred images that reside on my external thunderbolt hard drive. But when I take that hard drive home and connected it to my home mac and then open Bridge, only a handful of keywords appear. I don't see the full list of keywords that I created at work. But in Bridge, I didn't see any option to save or export keywords as a file.
    Although the image metadata does appear, because whatever keyword i assigned to an image at work does display on the home mac, I just don't see the entire keyword list.
    Can or should Bridge therefore only be used on one computer? Is it not possible to transfer the entire Bridge keyword list from one mac to another?
    Thanks in advance for any help feedback with this.

    Hi Zenos,
    I've discovered what is causing the problem, but I still need a way to fix it, if possible.
    The cause of the problem is that in Windows 7 Control Panel > Display I have set the size of "text and other items" to 150% (otherwise everything is much too small too read on my screen's recommended resolution of 1920×1080).
    I discovered that Irfan Viewer was also displaying at the incorrect resolution, but I managed to solve that problem by right-clicking on the IrfanView.exe icon and following Properties > Compatibility and selecting "Disable display scaling on high DPI settings".
    I tried the same procedure with Thunderbird, but it made no difference. It is still displaying at the incorrect resolution.
    Any suggestions?
    Regards,
    Catsix

  • LinkToAction Image not displaying in NWDS

    Hi,
    I am on NWDS version Version: 2.0.14.
    My imageSource file (abc.gif) associated with each LinkToAction type element displays fine in execution mode.  However, the image does not display in NWDS.  All I see is a blank in the layout where the link is.  I also have a blank text property because I only wish to show an image for the link. Images not showing in NWDS slows considerably my layout development. 
    Conversely, when I create an Image type element and I specify the imageSource file the same way, I see the image in both NWDS and in execution mode.
    My image files are stored appropriately in the mimes\Components folder.
    What could I be doing wrong?  Is this a bug with NWDS?
    Thanks,
    Kevin

    Probably a bug. Real WYSIWYG will be available in the new view designer implementation.
    Armin

  • Image not displayed in html output used webservice to store in a location

    hi
    we have used webservices to store the pdf and html outputs but the problem is when we are seeing the preview in the bi publisher we can see the image in pdf and html but when we run through webservices and see the output files that are stored in some location image in the html output is not displayed but in the pdf we can see the image.
    i have used the direct insertion image option in the header section. is the problem because i have used the direct insertion.
    can you give the idea how to import logo from an external location so that we can check the if it is problem with direct insertion or problem with the webservice as we are storing the output files outside the catlog but it may not be wrong because in pdf we can see the image.
    I am not having any idea how to solve thsi issue..
    Sorry to bother you with these many questions
    Thanks in Advance
    Have a Nice day.

    Please state which BI Publisher version you are using.
    In case it is 10g then please always test the application with the latest patch first!.
    BTW today there is been a new patch 11846804 released for 10.1.3.4.1 (March 2011).
    regards
    Jorge

  • Image not displaying in HTML output

    Hello! We have been using Report Builder 10.1.2.0.2 to generate PDF reports which contain a logo. However, when the same report is changed to DESFORMAT=HTML or HTMLCSS, we get a red "x" for the image. I'm not sure if this is issue can be resolved within the Oracle RDF file itself, or whether it is because of our architecture. We are executing the reports from Oracle Application Express, which utilizes HTTPS protocol and is hosted by Oracle HTTP Server on a server located in the DMZ of our corporate network. The Reports Services server is on a separate server, located within our corporate network. The Oracle Reports are executed through the browser using HTTP protocol. Could this be an SSL issue or a reverse-proxy issue on OHS? It seems that the image cannot be displayed in the browser because the path to the image is not recognized or valid. The image was embedded in the RDF file via Insert...Image, not File Link. This issue is not exhibited in our DEV environment, where both OHS and Reports Server are within the network. Any ideas would be appreciated.

    Hello,
    Right click on the red "x" and select "properties" to check the URL used to "download" the image.
    The reports servlet will use information defined in the HTTP server conf file (httpd.conf) to build this URL
    Parameters are :
    ServerName
    Port
    UseCanonicalName
    You can fnd details in the "My Oracle Support" document :
    How the Reports Servlet Builds the URLs Inserted in the HTML/HTMLCSS output (Doc ID 276306.1)
    Regards

  • Image not displayed correctly in image control at small zoom level

    I am displaying an image in an image control with a zoom factor of ~0.015 and it appears as shown in image 1.jpg.  When I zoom in a little more to ~0.016 the image is displayed correctly as shown in image 2.jpg.  Both images are attached.
    Why is the image displayed as a "grey strip" in the first image?  What do I need to do to have the image displayed correctly at any zoom factor?  I am using LV 2011 with the associated vision development module on Windows 7.
    Thanks,
    Jonathan-LV
    Solved!
    Go to Solution.
    Attachments:
    Image 1.jpg ‏133 KB
    Image 2.jpg ‏152 KB

    Hi Jonathan,
    Did you try resizing your image dimensions, as I suggested in my previous post? Anti-aliasing is an expected behavior; as you zoom out, the image has to be resampled in order to be displayed properly. At some point, LabVIEW assumes that the image has been resampled to the point where it no longer resembles the initial image, and so it greys the image out. In the case of your image, that is not the case. As I said, I believe an acceptable workaround would be to use IMAQ resample to half or quarter the pixel dimensions of your image, at which point it should be able to be displayed at a higher zoom factor. 
    Best,
    Dan N
    Applications Engineer
    National Instruments 

Maybe you are looking for

  • How to get Lion off my computer and go back to Snow Leopard???

    How do I get rid of Lion and go back to Snow Leopard PERMANENTLY? I am not techno. I need simple instructions with plain descriptions. I do not have any discs. The iMac came with Snow Leopard and I loaded NOTHING. I should never have bought  Lion. It

  • Photo orientation wrong when synched back to iPhone

    Hi, I take photos on my iPhone, then I put them into a folder and I keep that folder synched to the iPhone. That folder contains other photos from my Nikon cameras too. Mostly all the photos I take on the iPhone are in the portrait orientation (1200x

  • Custom component issue

    Custom component issue According to customer requirements, we want to get such an effect in the development of custom components: Drag and drop custom components to the Flex builder work area, it can generate more than the default properties, not jus

  • Spry: Drop Down Menu

    Hello, I was wondering if someone can help me with the following... In the Spry Photo Gallery, I would like the drop down menu to swap an image (not the main image from the slide show, but rather a separate image elsewhere on the page) for another, s

  • Installing iOS 6.0.1

    On my phone, when selecting the  update button, it goes through the whole process, but near the end it just stops.  Error message comes on, "Software Update Failed".  anyone has a solution to this problem?